芝麻web文件管理V1.00
编辑当前文件:/home/mybf1/www/sabun.bf1.my/wp-content/themes/ef-practical/inc/kirki/core/class-kirki-section.php
section_types = apply_filters( 'kirki_section_types', $this->section_types ); $this->add_section( $args ); } /** * Adds the section using the WordPress Customizer API. * * @access public * @param array $args The section parameters. */ public function add_section( $args ) { global $wp_customize; // The default class to be used when creating a section. $section_classname = 'WP_Customize_Section'; if ( isset( $args['type'] ) && array_key_exists( $args['type'], $this->section_types ) ) { $section_classname = $this->section_types[ $args['type'] ]; } if ( isset( $args['type'] ) && 'kirki-outer' === $args['type'] ) { $args['type'] = 'outer'; $section_classname = 'WP_Customize_Section'; } // Add the section. $wp_customize->add_section( new $section_classname( $wp_customize, sanitize_key( $args['id'] ), $args ) ); } }