<?php /** * Excerpt options * * @package Theme Palace * @subpackage Edufication * @since Edufication 1.0.0 */ // Add excerpt section $wp_customize->add_section( 'edufication_single_post_section', array( 'title' => esc_html__( 'Single Post','edufication' ), 'description' => esc_html__( 'Options to change the single posts globally.', 'edufication' ), 'panel' => 'edufication_theme_options_panel', ) ); // Archive date meta setting and control. $wp_customize->add_setting( 'edufication_theme_options[single_post_hide_date]', array( 'default' => $options['single_post_hide_date'], 'sanitize_callback' => 'edufication_sanitize_switch_control', ) ); $wp_customize->add_control( new Edufication_Switch_Control( $wp_customize, 'edufication_theme_options[single_post_hide_date]', array( 'label' => esc_html__( 'Hide Date', 'edufication' ), 'section' => 'edufication_single_post_section', 'on_off_label' => edufication_hide_options(), ) ) ); // Archive author meta setting and control. $wp_customize->add_setting( 'edufication_theme_options[single_post_hide_author]', array( 'default' => $options['single_post_hide_author'], 'sanitize_callback' => 'edufication_sanitize_switch_control', ) ); $wp_customize->add_control( new Edufication_Switch_Control( $wp_customize, 'edufication_theme_options[single_post_hide_author]', array( 'label' => esc_html__( 'Hide Author', 'edufication' ), 'section' => 'edufication_single_post_section', 'on_off_label' => edufication_hide_options(), ) ) ); // Archive author category setting and control. $wp_customize->add_setting( 'edufication_theme_options[single_post_hide_category]', array( 'default' => $options['single_post_hide_category'], 'sanitize_callback' => 'edufication_sanitize_switch_control', ) ); $wp_customize->add_control( new Edufication_Switch_Control( $wp_customize, 'edufication_theme_options[single_post_hide_category]', array( 'label' => esc_html__( 'Hide Category', 'edufication' ), 'section' => 'edufication_single_post_section', 'on_off_label' => edufication_hide_options(), ) ) ); // Archive tag category setting and control. $wp_customize->add_setting( 'edufication_theme_options[single_post_hide_tags]', array( 'default' => $options['single_post_hide_tags'], 'sanitize_callback' => 'edufication_sanitize_switch_control', ) ); $wp_customize->add_control( new Edufication_Switch_Control( $wp_customize, 'edufication_theme_options[single_post_hide_tags]', array( 'label' => esc_html__( 'Hide Tag', 'edufication' ), 'section' => 'edufication_single_post_section', 'on_off_label' => edufication_hide_options(), ) ) );