diff --git a/src/wp-includes/comment-template.php b/src/wp-includes/comment-template.php index 0687d7e71d..5795362c3f 100644 --- a/src/wp-includes/comment-template.php +++ b/src/wp-includes/comment-template.php @@ -2258,14 +2258,13 @@ function comment_form( $args = array(), $post_id = null ) { } $req = get_option( 'require_name_email' ); - $aria_req = ( $req ? " aria-required='true'" : '' ); $html_req = ( $req ? " required='required'" : '' ); $html5 = 'html5' === $args['format']; $fields = array( 'author' => '
', + '', 'email' => '' . - '
', + '', 'url' => '' . '
', ); @@ -2282,7 +2281,7 @@ function comment_form( $args = array(), $post_id = null ) { $fields = apply_filters( 'comment_form_default_fields', $fields ); $defaults = array( 'fields' => $fields, - 'comment_field' => '', + 'comment_field' => '
', /** This filter is documented in wp-includes/link-template.php */ 'must_log_in' => '
' . sprintf( /* translators: %s: login URL */