WP_Customize_Panel::render_template()protectedWP 4.3.0

An Underscore (JS) template for rendering this panel's container.

Class variables for this panel class are available in the data JS object; export custom variables by overriding WP_Customize_Panel::json().

Method of the class: WP_Customize_Panel{}

No Hooks.

Return

null. Nothing (null).

Usage

// protected - for code of main (parent) or child class
$result = $this->render_template();

Notes

Changelog

Since 4.3.0 Introduced.

WP_Customize_Panel::render_template() code WP 6.5.2

<?php
protected function render_template() {
	?>
	<li id="accordion-panel-{{ data.id }}" class="accordion-section control-section control-panel control-panel-{{ data.type }}">
		<h3 class="accordion-section-title" tabindex="0">
			{{ data.title }}
			<span class="screen-reader-text">
				<?php
				/* translators: Hidden accessibility text. */
				_e( 'Press return or enter to open this panel' );
				?>
			</span>
		</h3>
		<ul class="accordion-sub-container control-panel-content"></ul>
	</li>
	<?php
}