add_section( 'auto_mechanic_post_options', array( 'title' => esc_html__( 'Post Options', 'auto-mechanic' ), 'panel' => 'auto_mechanic_theme_options', ) ); // Post Options - Show / Hide Feature Image. $wp_customize->add_setting( 'auto_mechanic_post_hide_feature_image', array( 'default' => false, 'sanitize_callback' => 'auto_mechanic_sanitize_switch', ) ); $wp_customize->add_control( new Auto_Mechanic_Toggle_Switch_Custom_Control( $wp_customize, 'auto_mechanic_post_hide_feature_image', array( 'label' => esc_html__( 'Show / Hide Featured Image', 'auto-mechanic' ), 'section' => 'auto_mechanic_post_options', ) ) ); // Post Options - Show / Hide Post Heading. $wp_customize->add_setting( 'auto_mechanic_post_hide_post_heading', array( 'default' => false, 'sanitize_callback' => 'auto_mechanic_sanitize_switch', ) ); $wp_customize->add_control( new Auto_Mechanic_Toggle_Switch_Custom_Control( $wp_customize, 'auto_mechanic_post_hide_post_heading', array( 'label' => esc_html__( 'Show / Hide Post Heading', 'auto-mechanic' ), 'section' => 'auto_mechanic_post_options', ) ) ); // Post Options - Show / Hide Post Content. $wp_customize->add_setting( 'auto_mechanic_post_hide_post_content', array( 'default' => false, 'sanitize_callback' => 'auto_mechanic_sanitize_switch', ) ); $wp_customize->add_control( new Auto_Mechanic_Toggle_Switch_Custom_Control( $wp_customize, 'auto_mechanic_post_hide_post_content', array( 'label' => esc_html__( 'Show / Hide Post Content', 'auto-mechanic' ), 'section' => 'auto_mechanic_post_options', ) ) ); // Post Options - Show / Hide Date. $wp_customize->add_setting( 'auto_mechanic_post_hide_date', array( 'default' => false, 'sanitize_callback' => 'auto_mechanic_sanitize_switch', ) ); $wp_customize->add_control( new Auto_Mechanic_Toggle_Switch_Custom_Control( $wp_customize, 'auto_mechanic_post_hide_date', array( 'label' => esc_html__( 'Show / Hide Date', 'auto-mechanic' ), 'section' => 'auto_mechanic_post_options', ) ) ); // Post Options - Show / Hide Author. $wp_customize->add_setting( 'auto_mechanic_post_hide_author', array( 'default' => false, 'sanitize_callback' => 'auto_mechanic_sanitize_switch', ) ); $wp_customize->add_control( new Auto_Mechanic_Toggle_Switch_Custom_Control( $wp_customize, 'auto_mechanic_post_hide_author', array( 'label' => esc_html__( 'Show / Hide Author', 'auto-mechanic' ), 'section' => 'auto_mechanic_post_options', ) ) ); // Post Options - Show / Hide Category. $wp_customize->add_setting( 'auto_mechanic_post_hide_category', array( 'default' => true, 'sanitize_callback' => 'auto_mechanic_sanitize_switch', ) ); $wp_customize->add_control( new Auto_Mechanic_Toggle_Switch_Custom_Control( $wp_customize, 'auto_mechanic_post_hide_category', array( 'label' => esc_html__( 'Show / Hide Category', 'auto-mechanic' ), 'section' => 'auto_mechanic_post_options', ) ) );