WP_Customize_Section::print_template()

In this article

Render the section’s JS template.

Description

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

See also

Source

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

Changelog

VersionDescription
4.3.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.