add_section( 'section_home_testimonial', array( 'title' => __( 'Testimonial Section', 'businessbiz' ), 'priority' => 80, 'capability' => 'edit_theme_options', 'panel' => 'home_page_panel', ) ); $wp_customize->add_setting( 'theme_options[disable_testimonial_section]', array( 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'businessbiz_sanitize_switch_control', ) ); $wp_customize->add_control( new Businessbiz_Switch_Control( $wp_customize, 'theme_options[disable_testimonial_section]', array( 'label' => __('Enable/Disable Testimonial Section', 'businessbiz'), 'section' => 'section_home_testimonial', 'settings' => 'theme_options[disable_testimonial_section]', 'on_off_label' => businessbiz_switch_options(), ) ) ); // Testimonial background image control and setting $wp_customize->add_setting( 'theme_options[testimonial_image]', array( 'sanitize_callback' => 'esc_url_raw', ) ); $wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize, 'theme_options[testimonial_image]', array( 'label' => esc_html__( 'Background Image', 'businessbiz' ), 'section' => 'section_home_testimonial', 'active_callback' => 'businessbiz_testimonial_active', ) ) ); for( $i=1; $i<=3; $i++ ){ // Additional Information First Page $wp_customize->add_setting('theme_options[testimonial_page_'.$i.']', array( 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'businessbiz_dropdown_pages' ) ); $wp_customize->add_control('theme_options[testimonial_page_'.$i.']', array( 'label' => sprintf( __('Select Page #%1$s', 'businessbiz'), $i), 'section' => 'section_home_testimonial', 'settings' => 'theme_options[testimonial_page_'.$i.']', 'type' => 'dropdown-pages', 'active_callback' => 'businessbiz_testimonial_active', ) ); }