add_section( 'section_featured_slider', array( 'title' => __( 'Featured Slider Section', 'blogbell' ), 'priority' => 10, 'capability' => 'edit_theme_options', 'panel' => 'home_page_panel', ) ); $wp_customize->add_setting( 'theme_options[disable_featured-slider_section]', array( 'default' => $default['disable_featured-slider_section'], 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'blogbell_sanitize_switch_control', ) ); $wp_customize->add_control( new BlogBell_Switch_Control( $wp_customize, 'theme_options[disable_featured-slider_section]', array( 'label' => __('Disable slider Section', 'blogbell'), 'section' => 'section_featured_slider', 'on_off_label' => blogbell_switch_options(), ) ) ); $wp_customize->add_setting( 'theme_options[disable_white_overlay]', array( 'default' => $default['disable_white_overlay'], 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'blogbell_sanitize_switch_control', ) ); $wp_customize->add_control( new BlogBell_Switch_Control( $wp_customize, 'theme_options[disable_white_overlay]', array( 'label' => __('Disable White overlay and enable image overlay', 'blogbell'), 'section' => 'section_featured_slider', 'on_off_label' => blogbell_switch_options(), 'active_callback' => 'blogbell_slider_active', ) ) ); for( $i=1; $i<=3; $i++ ){ // Additional Information First Page $wp_customize->add_setting('theme_options[slider_page_'.$i.']', array( 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'blogbell_dropdown_pages' ) ); $wp_customize->add_control('theme_options[slider_page_'.$i.']', array( 'label' => sprintf( __('Select Page #%1$s', 'blogbell'), $i), 'section' => 'section_featured_slider', 'settings' => 'theme_options[slider_page_'.$i.']', 'type' => 'dropdown-pages', 'active_callback' => 'blogbell_slider_active', ) ); // Cta Button Text $wp_customize->add_setting('theme_options[slider_custom_btn_text_' . $i . ']', array( 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_text_field' ) ); $wp_customize->add_control('theme_options[slider_custom_btn_text_' . $i . ']', array( 'label' => sprintf( __('Button Label %d', 'blogbell'),$i ), 'section' => 'section_featured_slider', 'settings' => 'theme_options[slider_custom_btn_text_' . $i . ']', 'active_callback' => 'blogbell_slider_active', 'type' => 'text', ) ); }