• id="li-comment-">
    comment_approved == '0' ) : ?>

    '; $fields['email'] = '

    '; $fields['url'] = '

    '; return $fields; } } add_filter( 'comment_form_default_fields', 'ct_startup_blog_update_fields' ); //---------------------------------------------------------------------------------- // Update the comment textarea field //---------------------------------------------------------------------------------- if ( ! function_exists( 'ct_startup_blog_update_comment_field' ) ) { function ct_startup_blog_update_comment_field( $comment_field ) { // don't filter the WooCommerce review form if ( function_exists( 'is_woocommerce' ) ) { if ( is_woocommerce() ) { return $comment_field; } } $comment_field = '

    '; return $comment_field; } } add_filter( 'comment_form_field_comment', 'ct_startup_blog_update_comment_field' ); //---------------------------------------------------------------------------------- // Remove comment notes with markup that displays after the comment form //---------------------------------------------------------------------------------- if ( ! function_exists( 'ct_startup_blog_remove_comments_notes_after' ) ) { function ct_startup_blog_remove_comments_notes_after( $defaults ) { $defaults['comment_notes_after'] = ''; return $defaults; } } add_action( 'comment_form_defaults', 'ct_startup_blog_remove_comments_notes_after' );