add_section( 'woo_options', array( 'title' => __( 'WooCommerce Options', 'bike-shop' ), 'priority' => 86, ) ); // Setting group for page width $wp_customize->add_setting( 'shop_layout', array( 'default' => esc_html__('col-md-12','bike-shop'), 'sanitize_callback' => 'bike_shop_sanitize_shop_layout', ) ); $wp_customize->add_control( 'shop_layout', array( 'type' => 'radio', 'label' => esc_html__( 'Shop Layout', 'bike-shop' ), 'section' => 'woo_options', 'priority' => 2, 'choices' => array( 'col-md-12' => __( 'Full Width', 'bike-shop' ), 'col-md-8' => __( 'Right Sidebar', 'bike-shop' ), 'col-md-8 order-md-2' => __( 'Left Sidebar', 'bike-shop' ), ) ) ); } endif;