diff --git a/comment-template_base.php b/comment-template.php
index ad5b9ca..3b19b94 100644
old
|
new
|
function wp_list_comments( $args = array(), $comments = null ) { |
2111 | 2111 | * @type string $title_reply_to The translatable 'reply-to' button label. Default 'Leave a Reply to %s', |
2112 | 2112 | * where %s is the author of the comment being replied to. |
2113 | 2113 | * @type string $title_reply_before HTML displayed before the comment form title. |
2114 | | * Default: '<h3 id="reply-title" class="comment-reply-title">'. |
| 2114 | * Default: '<h2 id="reply-title" class="comment-reply-title">'. |
2115 | 2115 | * @type string $title_reply_after HTML displayed after the comment form title. |
2116 | | * Default: '</h3>'. |
| 2116 | * Default: '</h2>'. |
2117 | 2117 | * @type string $cancel_reply_before HTML displayed before the cancel reply link. |
2118 | 2118 | * @type string $cancel_reply_after HTML displayed after the cancel reply link. |
2119 | 2119 | * @type string $cancel_reply_link The translatable 'cancel reply' button label. Default 'Cancel reply'. |
… |
… |
function comment_form( $args = array(), $post_id = null ) { |
2178 | 2178 | 'name_submit' => 'submit', |
2179 | 2179 | 'title_reply' => __( 'Leave a Reply' ), |
2180 | 2180 | 'title_reply_to' => __( 'Leave a Reply to %s' ), |
2181 | | 'title_reply_before' => '<h3 id="reply-title" class="comment-reply-title">', |
2182 | | 'title_reply_after' => '</h3>', |
| 2181 | 'title_reply_before' => '<h2 id="reply-title" class="comment-reply-title">', |
| 2182 | 'title_reply_after' => '</h2>', |
2183 | 2183 | 'cancel_reply_before' => ' <small>', |
2184 | 2184 | 'cancel_reply_after' => '</small>', |
2185 | 2185 | 'cancel_reply_link' => __( 'Cancel reply' ), |