Block::schedule_block_output( array $props )
Schedule Block Dynamic content Output.
Parameters
- $props
-
(array) (Required) An array of attributes from shortcode.
Return
(string) The HTML output the shortcode.
Source
File: src/Conference/Editor/Block.php
public function schedule_block_output($props) {
$schedule = new Schedule();
return $schedule->render_shortcode( $props );
}
Changelog
| Version | Description |
|---|---|
| 1.0.0 | Introduced. |