add_section( 'general_settings' , array( 'title' => __( 'General Settings', 'blogauthor' ), 'panel' => 'blogauthor_option_panel', ) ); /*Show Preloader*/ $wp_customize->add_setting( 'blogauthor_options[show_lightbox_image]', array( 'default' => $default_options['show_lightbox_image'], 'sanitize_callback' => 'blogauthor_sanitize_checkbox', ) ); $wp_customize->add_control( 'blogauthor_options[show_lightbox_image]', array( 'label' => __( 'Show LightBox Image', 'blogauthor' ), 'section' => 'general_settings', 'type' => 'checkbox', ) ); $wp_customize->add_setting( 'blogauthor_options[enable_cursor_dot_outline]', array( 'default' => $default_options['enable_cursor_dot_outline'], 'sanitize_callback' => 'blogauthor_sanitize_checkbox', ) ); $wp_customize->add_control( 'blogauthor_options[enable_cursor_dot_outline]', array( 'label' => esc_html__('Enable Cursor Dot Outline', 'blogauthor'), 'section' => 'general_settings', 'type' => 'checkbox', ) );