add_section( 'beauty-studio-author-info', array( 'capability' => 'edit_theme_options', 'theme_supports' => '', 'title' => esc_html__( 'Author Info Options', 'beauty-studio' ), 'panel' => 'beauty-studio-single-post' ) ); /*Show hide author info*/ $wp_customize->add_setting( 'beauty_studio_theme_options[beauty-studio-show-author-info]', array( 'capability' => 'edit_theme_options', 'default' => $defaults['beauty-studio-show-author-info'], 'sanitize_callback' => 'beauty_studio_sanitize_checkbox' ) ); $wp_customize->add_control( 'beauty_studio_theme_options[beauty-studio-show-author-info]', array( 'label' => esc_html__( 'Show Author Info', 'beauty-studio' ), 'section' => 'beauty-studio-author-info', 'settings' => 'beauty_studio_theme_options[beauty-studio-show-author-info]', 'type' => 'checkbox' ) );