WP_Customize_Manager::render_panel_templates PHP Method

render_panel_templates() public method

Render JS templates for all registered panel types.
Since: 4.3.0
    public function render_panel_templates()
    {
        foreach ($this->registered_panel_types as $panel_type) {
            $panel = new $panel_type($this, 'temp', array());
            $panel->print_template();
        }
    }
WP_Customize_Manager