add_section( 'section_cta', array( 'title' => __( 'Call To Action Section', 'bizbell' ), 'priority' => 30, 'capability' => 'edit_theme_options', 'panel' => 'home_page_panel', ) ); $wp_customize->add_setting( 'theme_options[disable_cta_section]', array( 'default' => $default['disable_cta_section'], 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'bizbell_sanitize_switch_control', ) ); $wp_customize->add_control( new BizBell_Switch_Control( $wp_customize, 'theme_options[disable_cta_section]', array( 'label' => __('Disable Call to action section', 'bizbell'), 'section' => 'section_cta', 'on_off_label' => bizbell_switch_options(), ) ) ); // Cta Background Image $wp_customize->add_setting('theme_options[background_cta_section]', array( 'type' => 'theme_mod', 'default' => $default['background_cta_section'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'bizbell_sanitize_image' ) ); $wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize, 'theme_options[background_cta_section]', array( 'label' => __('Background Image', 'bizbell'), 'section' => 'section_cta', 'settings' => 'theme_options[background_cta_section]', 'active_callback' => 'bizbell_cta_active', 'type' => 'image', ) ) ); // Additional Information First Page $wp_customize->add_setting('theme_options[cta_page]', array( 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'bizbell_dropdown_pages' ) ); $wp_customize->add_control('theme_options[cta_page]', array( 'label' => __('Select Page', 'bizbell'), 'section' => 'section_cta', 'settings' => 'theme_options[cta_page]', 'type' => 'dropdown-pages', 'active_callback' => 'bizbell_cta_active', ) ); // Cta Button Text $wp_customize->add_setting('theme_options[cta_button_label]', array( 'default' => $default['cta_button_label'], 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_text_field' ) ); $wp_customize->add_control('theme_options[cta_button_label]', array( 'label' => __('Button Label', 'bizbell'), 'section' => 'section_cta', 'settings' => 'theme_options[cta_button_label]', 'active_callback' => 'bizbell_cta_active', 'type' => 'text' ) ); // Cta Button Text $wp_customize->add_setting('theme_options[cta_alt_button_label]', array( 'default' => $default['cta_alt_button_label'], 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_text_field' ) ); $wp_customize->add_control('theme_options[cta_alt_button_label]', array( 'label' => __('Alt Button Label', 'bizbell'), 'section' => 'section_cta', 'settings' => 'theme_options[cta_alt_button_label]', 'active_callback' => 'bizbell_cta_active', 'type' => 'text' ) ); // Cta Button Url $wp_customize->add_setting('theme_options[cta_alt_button_url]', array( 'default' => $default['cta_alt_button_url'], 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'esc_url_raw' ) ); $wp_customize->add_control('theme_options[cta_alt_button_url]', array( 'label' => __('Button Url', 'bizbell'), 'section' => 'section_cta', 'settings' => 'theme_options[cta_alt_button_url]', 'active_callback' => 'bizbell_cta_active', 'type' => 'url' ) );