add_section( 'bootstrap_coach_sidebar_options', array( 'title' => esc_attr__( 'Sidebar', 'bootstrap-coach' ), 'panel' => 'bootstrap_coach_general_panel', 'priority' => 3, 'capability' => 'edit_theme_options', ) ); $wp_customize->add_setting( 'bootstrap_coach_sidebar_layout', array( 'capability' => 'edit_theme_options', 'sanitize_callback' => 'bootstrap_coach_sanitize_choices', 'default' => 'right-sidebar', ) ); $wp_customize->add_control( new Bootstrap_Coach_Radio_Buttonset_Control( $wp_customize, 'bootstrap_coach_sidebar_layout', array( 'label' => esc_html__( 'Select sidebar layout', 'bootstrap-coach' ), 'section' => 'bootstrap_coach_sidebar_options', 'settings' => 'bootstrap_coach_sidebar_layout', 'type'=> 'radio-buttonset', 'choices' => array( 'left-sidebar' => esc_attr__( 'Sidebar at left', 'bootstrap-coach' ), 'right-sidebar' => esc_attr__( 'Sidebar at right', 'bootstrap-coach' ), 'no-sidebar' => esc_attr__( 'No sidebar', 'bootstrap-coach' ), ), ) ) ); }