"; /*adding sections for header options panel*/ $wp_customize->add_section( 'beauty-studio-post-comments', array( 'priority' => 30, 'capability' => 'edit_theme_options', 'title' => esc_html__( 'Post Comments Options', 'beauty-studio' ), 'description' => sprintf( esc_html__( 'Further setting are available %1$s here %2$s, and also in single post/page', 'beauty-studio' ), $option_discussion,''), 'panel' => 'beauty-studio-single-post', ) ); /*Show hide author info*/ $wp_customize->add_setting( 'beauty_studio_theme_options[beauty-studio-hide-comment]', array( 'capability' => 'edit_theme_options', 'default' => $defaults['beauty-studio-hide-comment'], 'sanitize_callback' => 'beauty_studio_sanitize_checkbox' ) ); $wp_customize->add_control( 'beauty_studio_theme_options[beauty-studio-hide-comment]', array( 'label' => esc_html__( 'Hide Comment', 'beauty-studio' ), 'section' => 'beauty-studio-post-comments', 'settings' => 'beauty_studio_theme_options[beauty-studio-hide-comment]', 'type' => 'checkbox' ) ); /*Post comment form*/ $wp_customize->add_setting( 'beauty_studio_theme_options[beauty-studio-comment-title]', array( 'capability' => 'edit_theme_options', 'default' => $defaults['beauty-studio-comment-title'], 'sanitize_callback' => 'sanitize_text_field' ) ); $wp_customize->add_control( 'beauty_studio_theme_options[beauty-studio-comment-title]', array( 'label' => esc_html__( 'Comment Title', 'beauty-studio' ), 'section' => 'beauty-studio-post-comments', 'settings' => 'beauty_studio_theme_options[beauty-studio-comment-title]', 'type' => 'text' ) ); /*comment button text*/ $wp_customize->add_setting( 'beauty_studio_theme_options[beauty-studio-comment-button-text]', array( 'capability' => 'edit_theme_options', 'default' => $defaults['beauty-studio-comment-button-text'], 'sanitize_callback' => 'sanitize_text_field' ) ); $wp_customize->add_control( 'beauty_studio_theme_options[beauty-studio-comment-button-text]', array( 'label' => esc_html__( 'Comment Button Text', 'beauty-studio' ), 'section' => 'beauty-studio-post-comments', 'settings' => 'beauty_studio_theme_options[beauty-studio-comment-button-text]', 'type' => 'text' ) ); /*comment notes after*/ $wp_customize->add_setting( 'beauty_studio_theme_options[beauty-studio-comment-notes-after]', array( 'capability' => 'edit_theme_options', 'default' => $defaults['beauty-studio-comment-notes-after'], 'sanitize_callback' => 'sanitize_text_field' ) ); $wp_customize->add_control( 'beauty_studio_theme_options[beauty-studio-comment-notes-after]', array( 'label' => esc_html__( 'Comment Note After', 'beauty-studio' ), 'section' => 'beauty-studio-post-comments', 'settings' => 'beauty_studio_theme_options[beauty-studio-comment-notes-after]', 'type' => 'text' ) );