add_panel( new ALAGU_WP_Customize_Panel( $wp_customize, 'woocommerce-main-panel', array( 'title' => sprintf(esc_html__('%1$s WooCommerce', 'alagu'), ALAGU_THEME_NAME), 'priority' => 120 ) ) ); /** * WooCommerce Shop Page Section */ $wp_customize->add_section( new ALAGU_WP_Customize_Section( $wp_customize, 'woocommerce-shop-page-section', array( 'title' => esc_html__('Shop Page', 'alagu'), 'panel' => 'woocommerce-main-panel', 'priority' => 5, ) ) ); require_once ALAGU_THEME_DIR .'/inc/customizer/settings/woocommerce/woocommerce-shop-page-section.php'; /** * WooCommerce Category Archive Section */ $wp_customize->add_section( new ALAGU_WP_Customize_Section( $wp_customize, 'woocommerce-category-archive-section', array( 'title' => esc_html__('Category Archive', 'alagu'), 'panel' => 'woocommerce-main-panel', 'priority' => 10, ) ) ); require_once ALAGU_THEME_DIR .'/inc/customizer/settings/woocommerce/woocommerce-category-archive-section.php'; /** * WooCommerce Tag Archive Section */ $wp_customize->add_section( new ALAGU_WP_Customize_Section( $wp_customize, 'woocommerce-tag-archive-section', array( 'title' => esc_html__('Tag Archive', 'alagu'), 'panel' => 'woocommerce-main-panel', 'priority' => 15, ) ) ); require_once ALAGU_THEME_DIR .'/inc/customizer/settings/woocommerce/woocommerce-tag-archive-section.php'; /** * WooCommerce Product Single Page */ $wp_customize->add_panel( new ALAGU_WP_Customize_Panel( $wp_customize, 'woocommerce-product-single-page-section', array( 'title' => esc_html__('Product Single Page', 'alagu'), 'panel' => 'woocommerce-main-panel', 'priority' => 20 ) ) ); require_once ALAGU_THEME_DIR .'/inc/customizer/settings/woocommerce/woocommerce-product-single-page-section-default.php'; require_once ALAGU_THEME_DIR .'/inc/customizer/settings/woocommerce/woocommerce-product-single-page-section-upsell.php'; require_once ALAGU_THEME_DIR .'/inc/customizer/settings/woocommerce/woocommerce-product-single-page-section-related.php'; /** * WooCommerce Others */ $wp_customize->add_section( new ALAGU_WP_Customize_Section( $wp_customize, 'woocommerce-others-section', array( 'title' => esc_html__('Others', 'alagu'), 'panel' => 'woocommerce-main-panel', 'priority' => 25, ) ) ); require_once ALAGU_THEME_DIR .'/inc/customizer/settings/woocommerce/woocommerce-others-section.php';