add_section( 'blogslog_single_post_section', array( 'title' => esc_html__( 'Single Post','blogslog' ), 'description' => esc_html__( 'Options to change the single posts globally.', 'blogslog' ), 'panel' => 'blogslog_theme_options_panel', ) ); // Archive date meta setting and control. $wp_customize->add_setting( 'blogslog_theme_options[single_post_hide_date]', array( 'default' => $options['single_post_hide_date'], 'sanitize_callback' => 'blogslog_sanitize_switch_control', ) ); $wp_customize->add_control( new BlogSlog_Switch_Control( $wp_customize, 'blogslog_theme_options[single_post_hide_date]', array( 'label' => esc_html__( 'Hide Date', 'blogslog' ), 'section' => 'blogslog_single_post_section', 'on_off_label' => blogslog_hide_options(), ) ) ); // Archive author meta setting and control. $wp_customize->add_setting( 'blogslog_theme_options[single_post_hide_author]', array( 'default' => $options['single_post_hide_author'], 'sanitize_callback' => 'blogslog_sanitize_switch_control', ) ); $wp_customize->add_control( new BlogSlog_Switch_Control( $wp_customize, 'blogslog_theme_options[single_post_hide_author]', array( 'label' => esc_html__( 'Hide Author', 'blogslog' ), 'section' => 'blogslog_single_post_section', 'on_off_label' => blogslog_hide_options(), ) ) ); // Archive author category setting and control. $wp_customize->add_setting( 'blogslog_theme_options[single_post_hide_category]', array( 'default' => $options['single_post_hide_category'], 'sanitize_callback' => 'blogslog_sanitize_switch_control', ) ); $wp_customize->add_control( new BlogSlog_Switch_Control( $wp_customize, 'blogslog_theme_options[single_post_hide_category]', array( 'label' => esc_html__( 'Hide Category', 'blogslog' ), 'section' => 'blogslog_single_post_section', 'on_off_label' => blogslog_hide_options(), ) ) ); // Archive tag category setting and control. $wp_customize->add_setting( 'blogslog_theme_options[single_post_hide_tags]', array( 'default' => $options['single_post_hide_tags'], 'sanitize_callback' => 'blogslog_sanitize_switch_control', ) ); $wp_customize->add_control( new BlogSlog_Switch_Control( $wp_customize, 'blogslog_theme_options[single_post_hide_tags]', array( 'label' => esc_html__( 'Hide Tag', 'blogslog' ), 'section' => 'blogslog_single_post_section', 'on_off_label' => blogslog_hide_options(), ) ) );