Block::schedule_block_output( array $props )

Schedule Block Dynamic content Output.


Parameters

$props

(array) (Required) An array of attributes from shortcode.


Top ↑

Return

(string) The HTML output the shortcode.


Top ↑

Source

File: src/Conference/Editor/Block.php

	public function schedule_block_output($props) {
		$schedule = new Schedule();
		return $schedule->render_shortcode( $props );
	}

Top ↑

Changelog

Changelog
Version Description
1.0.0 Introduced.