add_section( 'woocommerce_breadcrumb', array( 'title' => __( 'Breadcrumb', 'beauty-lab' ), 'priority' => 8, 'panel' => 'woocommerce', ) ); // ---woocommere breadcrumb background image--- $wp_customize->add_setting( 'woocommerce_breadcrumb_bg', array( 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'themecon_validate_image', ) ); $wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize, 'woocommerce_breadcrumb_bg', array( 'label' => __( 'Upload Background Image', 'beauty-lab' ), 'section' => 'woocommerce_breadcrumb', 'settings' => 'woocommerce_breadcrumb_bg', ) ) ); // ---woocommere breadcrumb shot description--- $wp_customize->add_setting( 'woocommerce_breadcrumb_desc', array( 'default' => 'Welcome to beauty lab, where you can relax and enjoy life.', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'woocommerce_breadcrumb_desc', array( 'label' => __( 'Breadcrumb Short Description', 'beauty-lab' ), 'section' => 'woocommerce_breadcrumb', 'settings' => 'woocommerce_breadcrumb_desc', 'type' => 'textarea', ) ); // ---section title option added on woocommerce product catalog section--- $wp_customize->add_setting( 'woocommerce_shop_page_section_title', array( 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'woocommerce_shop_page_section_title', array( 'label' => __( 'Section Title', 'beauty-lab' ), 'section' => 'woocommerce_product_catalog', 'settings' => 'woocommerce_shop_page_section_title', 'type' => 'text', ) ); // ---section description option added on woocommerce product catalog section--- $wp_customize->add_setting( 'woocommerce_shop_page_section_description', array( 'default' => '', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'woocommerce_shop_page_section_description', array( 'label' => __( 'Section Description', 'beauty-lab' ), 'section' => 'woocommerce_product_catalog', 'settings' => 'woocommerce_shop_page_section_description', 'type' => 'textarea', ) ); //----woocommerce sidebar layout------ $wp_customize->add_setting( 'woocommerce_shop_sidebar', array( 'default' => 'left', 'transport' => 'refresh', 'sanitize_callback' => 'themecon_sanitize_select', )); $wp_customize->add_control( 'woocommerce_shop_sidebar_control', array( 'label' => __( 'Sidebar Layout', 'beauty-lab' ), 'section' => 'woocommerce_product_catalog', 'settings' => 'woocommerce_shop_sidebar', 'type' => 'radio', 'choices' => array( 'left' => __('Left Sidebar', 'beauty-lab'), 'right' => __('Right Sidebar', 'beauty-lab'), 'fullwidth' => __('No Sidebar', 'beauty-lab'), ) ) ); } add_action( 'customize_register', 'beauty_lab_customize_woo' ); ?>