add_section( 'header_section_settings', array( 'title' => esc_html__( 'Top Heading Section', 'bizprime' ), 'priority' => 100, 'capability' => 'edit_theme_options', 'panel' => 'theme_front_page_section', ) ); // Setting - top-header-location. $wp_customize->add_setting( 'theme_options[top-header-location]', array( 'default' => $default['top-header-location'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'theme_options[top-header-location]', array( 'label' => esc_html__( 'Location', 'bizprime' ), 'section' => 'header_section_settings', 'type' => 'text', 'priority' => 100, ) ); // Setting - top-header-telephone. $wp_customize->add_setting( 'theme_options[top-header-telephone]', array( 'default' => $default['top-header-telephone'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'theme_options[top-header-telephone]', array( 'label' => esc_html__( 'Contact Number', 'bizprime' ), 'section' => 'header_section_settings', 'type' => 'text', 'priority' => 110, ) ); // Setting - top-header-email. $wp_customize->add_setting( 'theme_options[top-header-email]', array( 'default' => $default['top-header-email'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_email', ) ); $wp_customize->add_control( 'theme_options[top-header-email]', array( 'label' => esc_html__( 'Email Address', 'bizprime' ), 'section' => 'header_section_settings', 'type' => 'text', 'priority' => 120, ) );