WP_Customize_Panel::print_template() – Render the panel’s JS templates.

You appear to be a bot. Output may be restricted

Description

Render the panel's JS templates.

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

Usage

WP_Customize_Panel::print_template();

Parameters

Returns

void

Source

File name: wordpress/wp-includes/class-wp-customize-panel.php
Lines:

1 to 10 of 10
  public function print_template() {
    ?>
		<script type="text/html" id="tmpl-customize-panel-<?php echo esc_attr( $this->type ); ?>-content">
			<?php $this->WP_Customize_Panel::content_template(); ?>
		</script>
		<script type="text/html" id="tmpl-customize-panel-<?php echo esc_attr( $this->type ); ?>">
			<?php $this->WP_Customize_Panel::render_template(); ?>
		</script>
		<?php
  }
 

 View on GitHub View on Trac