add_section( 'aster_it_solutions_single_post_options', array( 'title' => esc_html__( 'Single Post Options', 'aster-it-solutions' ), 'panel' => 'aster_it_solutions_theme_options', ) ); // Post Options - Hide Date. $wp_customize->add_setting( 'aster_it_solutions_single_post_hide_date', array( 'default' => false, 'sanitize_callback' => 'aster_it_solutions_sanitize_switch', ) ); $wp_customize->add_control( new Aster_It_Solutions_Toggle_Switch_Custom_Control( $wp_customize, 'aster_it_solutions_single_post_hide_date', array( 'label' => esc_html__( 'Hide Date', 'aster-it-solutions' ), 'section' => 'aster_it_solutions_single_post_options', ) ) ); // Post Options - Hide Author. $wp_customize->add_setting( 'aster_it_solutions_single_post_hide_author', array( 'default' => false, 'sanitize_callback' => 'aster_it_solutions_sanitize_switch', ) ); $wp_customize->add_control( new Aster_It_Solutions_Toggle_Switch_Custom_Control( $wp_customize, 'aster_it_solutions_single_post_hide_author', array( 'label' => esc_html__( 'Hide Author', 'aster-it-solutions' ), 'section' => 'aster_it_solutions_single_post_options', ) ) ); // Post Options - Hide Category. $wp_customize->add_setting( 'aster_it_solutions_single_post_hide_category', array( 'default' => false, 'sanitize_callback' => 'aster_it_solutions_sanitize_switch', ) ); $wp_customize->add_control( new Aster_It_Solutions_Toggle_Switch_Custom_Control( $wp_customize, 'aster_it_solutions_single_post_hide_category', array( 'label' => esc_html__( 'Hide Category', 'aster-it-solutions' ), 'section' => 'aster_it_solutions_single_post_options', ) ) ); // Post Options - Hide Tag. $wp_customize->add_setting( 'aster_it_solutions_post_hide_tags', array( 'default' => false, 'sanitize_callback' => 'aster_it_solutions_sanitize_switch', ) ); $wp_customize->add_control( new Aster_It_Solutions_Toggle_Switch_Custom_Control( $wp_customize, 'aster_it_solutions_post_hide_tags', array( 'label' => esc_html__( 'Hide Tag', 'aster-it-solutions' ), 'section' => 'aster_it_solutions_single_post_options', ) ) );