WP_Customize_Section::print_template()publicWP 4.3.0

Render the section's JS template.

This function is only run for section types that have been registered with WP_Customize_Manager::register_section_type().

Method of the class: WP_Customize_Section{}

No Hooks.

Return

null. Nothing (null).

Usage

$WP_Customize_Section = new WP_Customize_Section();
$WP_Customize_Section->print_template();

Notes

  • See: WP_Customize_Manager::render_template()

Changelog

Since 4.3.0 Introduced.

WP_Customize_Section::print_template() code WP 6.5.2

<?php
public function print_template() {
	?>
	<script type="text/html" id="tmpl-customize-section-<?php echo $this->type; ?>">
		<?php $this->render_template(); ?>
	</script>
	<?php
}