add_section( 'google_map_section_settings', array( 'title' => esc_html__( 'Google Map Section', 'bizprime' ), 'priority' => 400, 'capability' => 'edit_theme_options', 'panel' => 'theme_front_page_section', ) ); // Setting - show-google-map-section. $wp_customize->add_setting( 'theme_options[show-google-map-section]', array( 'default' => $default['show-google-map-section'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'bizprime_sanitize_checkbox', ) ); $wp_customize->add_control( 'theme_options[show-google-map-section]', array( 'label' => esc_html__( 'Enable Google Map', 'bizprime' ), 'section' => 'google_map_section_settings', 'type' => 'checkbox', 'priority' => 100, ) ); /*content zoom in google_map*/ $wp_customize->add_setting( 'theme_options[zoom-level-google-map-section]', array( 'default' => $default['zoom-level-google-map-section'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'bizprime_sanitize_positive_integer', ) ); $wp_customize->add_control( 'theme_options[zoom-level-google-map-section]', array( 'label' => esc_html__( 'Set Zoom Level', 'bizprime' ), 'section' => 'google_map_section_settings', 'type' => 'number', 'priority' => 110, 'input_attrs' => array( 'min' => 1, 'max' => 20, 'style' => 'width: 150px;' ), ) ); // Setting - show-google-map-section. $wp_customize->add_setting( 'theme_options[detail-google-map-section]', array( 'default' => $default['detail-google-map-section'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'theme_options[detail-google-map-section]', array( 'label' => esc_html__( 'Map Details', 'bizprime' ), 'description' => esc_html__( 'Just like the default one please enter in latitude,longitude format eg, 30.2811661,-97.7366992', 'bizprime' ), 'section' => 'google_map_section_settings', 'type' => 'text', 'priority' => 120, ) );