GC_Customize_Manager::render_panel_templates()
最后更新于:2021-11-27 01:56:44
GC_Customize_Manager::render_panel_templates()Render JS templates for all registered panel types.
源文件
文件: gc-includes/class-gc-customize-manager.php
public function render_panel_templates() {
foreach ( $this->registered_panel_types as $panel_type ) {
$panel = new $panel_type( $this, 'temp', array() );
$panel->print_template();
}
}