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