add_section( 'section_shop_single', array( 'title' => esc_html__( 'Shop Single (Product Detail)', 'blog-up' ), 'priority' => 100, 'panel' => 'theme_option_panel', ) ); // Setting enable_gallery_zoom. $wp_customize->add_setting( 'theme_options[enable_gallery_zoom]', array( 'default' => $default['enable_gallery_zoom'], 'sanitize_callback' => array( Sanitize::class, 'checkbox' ), ) ); $wp_customize->add_control( new Switcher( $wp_customize, 'theme_options[enable_gallery_zoom]', array( 'label' => esc_html__( 'Enable Image Zoom', 'blog-up' ), 'section' => 'section_shop_single', 'priority' => 100, ) ) ); // Setting disable_related_products. $wp_customize->add_setting( 'theme_options[disable_related_products]', array( 'default' => $default['disable_related_products'], 'sanitize_callback' => array( Sanitize::class, 'checkbox' ), ) ); $wp_customize->add_control( new Switcher( $wp_customize, 'theme_options[disable_related_products]', array( 'label' => esc_html__( 'Disable Related Products', 'blog-up' ), 'section' => 'section_shop_single', 'priority' => 100, ) ) );