WP_Customize_Manager::render_panel_templates()publicWP 4.3.0

Renders JS templates for all registered panel types.

Метод класса: WP_Customize_Manager{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$WP_Customize_Manager = new WP_Customize_Manager();
$WP_Customize_Manager->render_panel_templates();

Список изменений

С версии 4.3.0 Введена.

Код WP_Customize_Manager::render_panel_templates() WP 6.5.2

public function render_panel_templates() {
	foreach ( $this->registered_panel_types as $panel_type ) {
		$panel = new $panel_type( $this, 'temp', array() );
		$panel->print_template();
	}
}