add_section('aboutus', array( 'title' => __('Home About Section', 'atlantaa'), 'description' => '', 'panel' => 'frontpage', 'priority' => 150, ) ); $wp_customize->add_setting( 'atlantaa_aboutus_section_hideshow', array( 'default' => false, 'sanitize_callback' => 'atlantaa_customizer_sanitize_checkbox', ) ); $wp_customize->add_control('atlantaa_aboutus_section_hideshow', array( 'type' => 'checkbox', 'label' => __('About Us Show/hide Option', 'atlantaa'), 'description' => '', 'section' => 'aboutus', 'priority' => 1 ) ); $atlantaa_about_no = 1; for( $i = 1; $i <= $atlantaa_about_no; $i++ ) { $atlantaa_about_page = 'atlantaa_about_page_' .$i; } $wp_customize->add_setting( $atlantaa_about_page, array( 'default' => '', 'sanitize_callback' => 'atlantaa_sanitize_dropdown_pages', ) ); $wp_customize->add_control( $atlantaa_about_page, array( 'label' => __( 'About Page ', 'atlantaa' ), 'section' => 'aboutus', 'type' => 'dropdown-pages', 'priority' => 100, ) );