add_panel( new ALAGU_WP_Customize_Panel( $wp_customize, 'site-layout-main-panel', array( 'title' => esc_html__('Site Layout', 'alagu'), 'priority' => 25 ) ) ); /** * Site Layout Section */ $wp_customize->add_section( new ALAGU_WP_Customize_Section( $wp_customize, 'site-layout-container-section', array( 'title' => esc_html__('Layout', 'alagu'), 'panel' => 'site-layout-main-panel', 'priority' => 5, ) ) ); require_once ALAGU_THEME_DIR .'/inc/customizer/settings/site-layout/site-layout-container-section.php'; /** * Site Typography Section */ $wp_customize->add_section( new ALAGU_WP_Customize_Section( $wp_customize, 'site-layout-typography-section', array( 'title' => esc_html__('Color & Typography', 'alagu'), 'panel' => 'site-layout-main-panel', 'priority' => 10, ) ) ); require_once ALAGU_THEME_DIR .'/inc/customizer/settings/site-layout/site-layout-typography-section-section.php';