add_section( 'blog_corner_post_options', array( 'title' => esc_html__( 'Post Options', 'blog-corner' ), 'panel' => 'blog_corner_theme_options', ) ); // Post Options - Hide Date. $wp_customize->add_setting( 'blog_corner_post_hide_date', array( 'default' => false, 'sanitize_callback' => 'blog_corner_sanitize_switch', ) ); $wp_customize->add_control( new Blog_Corner_Toggle_Switch_Custom_Control( $wp_customize, 'blog_corner_post_hide_date', array( 'label' => esc_html__( 'Hide Date', 'blog-corner' ), 'section' => 'blog_corner_post_options', ) ) ); // Post Options - Hide Author. $wp_customize->add_setting( 'blog_corner_post_hide_author', array( 'default' => false, 'sanitize_callback' => 'blog_corner_sanitize_switch', ) ); $wp_customize->add_control( new Blog_Corner_Toggle_Switch_Custom_Control( $wp_customize, 'blog_corner_post_hide_author', array( 'label' => esc_html__( 'Hide Author', 'blog-corner' ), 'section' => 'blog_corner_post_options', ) ) ); // Post Options - Hide Category. $wp_customize->add_setting( 'blog_corner_post_hide_category', array( 'default' => false, 'sanitize_callback' => 'blog_corner_sanitize_switch', ) ); $wp_customize->add_control( new Blog_Corner_Toggle_Switch_Custom_Control( $wp_customize, 'blog_corner_post_hide_category', array( 'label' => esc_html__( 'Hide Category', 'blog-corner' ), 'section' => 'blog_corner_post_options', ) ) ); // Post Options - Hide Tag. $wp_customize->add_setting( 'blog_corner_post_hide_tags', array( 'default' => false, 'sanitize_callback' => 'blog_corner_sanitize_switch', ) ); $wp_customize->add_control( new Blog_Corner_Toggle_Switch_Custom_Control( $wp_customize, 'blog_corner_post_hide_tags', array( 'label' => esc_html__( 'Hide Tag', 'blog-corner' ), 'section' => 'blog_corner_post_options', ) ) ); // Post Options - Related Post Label. $wp_customize->add_setting( 'blog_corner_post_related_post_label', array( 'default' => __( 'Related Posts', 'blog-corner' ), 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'blog_corner_post_related_post_label', array( 'label' => esc_html__( 'Related Posts Label', 'blog-corner' ), 'section' => 'blog_corner_post_options', 'settings' => 'blog_corner_post_related_post_label', 'type' => 'text', ) ); if ( isset( $wp_customize->selective_refresh ) ) { $wp_customize->selective_refresh->add_partial( 'blog_corner_post_related_post_label', array( 'selector' => '.related-posts h2', 'settings' => 'blog_corner_post_related_post_label', ) ); }