add_section('benzile_abouts', array( 'title' => __('Home About Section', 'benzile'), 'description' => '', 'panel' => 'frontpage', 'priority' => 140, ) ); $wp_customize->add_setting('show_abouts',array( 'default' => false, 'sanitize_callback' => 'benzile_sanitize_checkbox', 'capability' => 'edit_theme_options', )); $wp_customize->add_control( 'show_abouts', array( 'settings' => 'show_abouts', 'section' => 'benzile_abouts', 'label' => __('Show Services','benzile'), 'type' => 'checkbox' )); // Services title $wp_customize->add_setting('benzile_abouts_title', array( 'default' => '', 'type' => 'theme_mod', 'sanitize_callback' => 'sanitize_text_field' ) ); $wp_customize->add_control('benzile_abouts_title', array( 'label' => __('About Title', 'benzile'), 'section' => 'benzile_abouts', 'priority' => 10 ) ); $wp_customize->add_setting( 'benzile_about_page', array( 'default' => '', 'sanitize_callback' => 'absint' ) ); $wp_customize->add_control( 'benzile_about_page', array( 'settings' => 'benzile_about_page', 'section' => 'benzile_abouts', 'type' => 'dropdown-pages', 'label' => __( 'Select a Page', 'benzile' ) ) );