add_section( 'section_home_blog', array( 'title' => __( 'Blog Section', 'blogbell' ), 'priority' => 110, 'capability' => 'edit_theme_options', 'panel' => 'home_page_panel', ) ); $wp_customize->add_setting( 'theme_options[disable_blog_section]', array( 'default' => $default['disable_blog_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_blog_section]', array( 'label' => __('Disable Blog Section', 'blogbell'), 'section' => 'section_home_blog', 'on_off_label' => blogbell_switch_options(), ) ) ); // Blog title $wp_customize->add_setting('theme_options[blog_title]', array( 'default' => $default['blog_title'], 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_text_field' ) ); $wp_customize->add_control('theme_options[blog_title]', array( 'label' => __('Section Title', 'blogbell'), 'section' => 'section_home_blog', 'settings' => 'theme_options[blog_title]', 'active_callback' => 'blogbell_blog_active', 'type' => 'text' ) ); // Setting Blog Category. $wp_customize->add_setting( 'theme_options[blog_category]', array( 'capability' => 'edit_theme_options', 'sanitize_callback' => 'absint', ) ); $wp_customize->add_control( new blogbell_Dropdown_Taxonomies_Control( $wp_customize, 'theme_options[blog_category]', array( 'label' => __( 'Select Category', 'blogbell' ), 'section' => 'section_home_blog', 'settings' => 'theme_options[blog_category]', 'active_callback' => 'blogbell_blog_active', 'priority' => 100, ) ) );