WP_Customize_Section::print_template
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.
Returns
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() WP Customize Section::print template code WP 6.8.3
<?php
public function print_template() {
?>
<script type="text/html" id="tmpl-customize-section-<?php echo $this->type; ?>">
<?php $this->render_template(); ?>
</script>
<?php
}