add_setting( 'shop_layout', array( 'sanitize_callback' => 'sanitize_text_field', 'default' => 'no-sidebar', ) ); $wp_customize->add_control( 'shop_layout', array( 'type' => 'select', 'label' => esc_html__( 'Shop Page Layout', 'bizes' ), 'description' => '', 'section' => 'woocommerce_product_catalog', 'choices' => array( 'right-sidebar' => esc_html__( 'Right sidebar', 'bizes' ), 'left-sidebar' => esc_html__( 'Left sidebar', 'bizes' ), 'no-sidebar' => esc_html__( 'No sidebar', 'bizes' ), ) ) );