Gifari Industries - BD Cyber Security Team
Home
/
home
/
decohaslibrary
/
bist
/
wp-content
/
themes
/
educollege
/
inc
/
customizer
/
theme-options
/
✏️
Editing: single-posts.php
<?php /** * Excerpt options * * @package Theme Palace * @subpackage Educollege * @since Educollege 1.0.0 */ // Add excerpt section $wp_customize->add_section( 'educollege_single_post_section', array( 'title' => esc_html__( 'Single Post','educollege' ), 'description' => esc_html__( 'Options to change the single posts globally.', 'educollege' ), 'panel' => 'educollege_theme_options_panel', ) ); // Tourableve date meta setting and control. $wp_customize->add_setting( 'educollege_theme_options[single_post_hide_date]', array( 'default' => $options['single_post_hide_date'], 'sanitize_callback' => 'educollege_sanitize_switch_control', ) ); $wp_customize->add_control( new Educollege_Switch_Control( $wp_customize, 'educollege_theme_options[single_post_hide_date]', array( 'label' => esc_html__( 'Hide Date', 'educollege' ), 'section' => 'educollege_single_post_section', 'on_off_label' => educollege_hide_options(), ) ) ); // Tourableve author meta setting and control. $wp_customize->add_setting( 'educollege_theme_options[single_post_hide_author]', array( 'default' => $options['single_post_hide_author'], 'sanitize_callback' => 'educollege_sanitize_switch_control', ) ); $wp_customize->add_control( new Educollege_Switch_Control( $wp_customize, 'educollege_theme_options[single_post_hide_author]', array( 'label' => esc_html__( 'Hide Author', 'educollege' ), 'section' => 'educollege_single_post_section', 'on_off_label' => educollege_hide_options(), ) ) ); // Tourableve author category setting and control. $wp_customize->add_setting( 'educollege_theme_options[single_post_hide_category]', array( 'default' => $options['single_post_hide_category'], 'sanitize_callback' => 'educollege_sanitize_switch_control', ) ); $wp_customize->add_control( new Educollege_Switch_Control( $wp_customize, 'educollege_theme_options[single_post_hide_category]', array( 'label' => esc_html__( 'Hide Category', 'educollege' ), 'section' => 'educollege_single_post_section', 'on_off_label' => educollege_hide_options(), ) ) ); // Tourableve tag category setting and control. $wp_customize->add_setting( 'educollege_theme_options[single_post_hide_tags]', array( 'default' => $options['single_post_hide_tags'], 'sanitize_callback' => 'educollege_sanitize_switch_control', ) ); $wp_customize->add_control( new Educollege_Switch_Control( $wp_customize, 'educollege_theme_options[single_post_hide_tags]', array( 'label' => esc_html__( 'Hide Tag', 'educollege' ), 'section' => 'educollege_single_post_section', 'on_off_label' => educollege_hide_options(), ) ) );
💾 Save
❌ Cancel