Ticket #23797: 23797.5.diff
File 23797.5.diff, 1.8 KB (added by , 10 years ago) |
---|
-
src/wp-includes/comment-template.php
1913 1913 * Default: '<h3 id="reply-title" class="comment-reply-title">'. 1914 1914 * @type string $title_reply_after HTML displayed after the comment form title. 1915 1915 * Default: '</h3>'. 1916 * @type string $cancel_reply_before HTML displayed before the cancel reply link. 1917 * @type string $cancel_reply_after HTML displayed after the cancel reply link. 1916 1918 * @type string $cancel_reply_link The translatable 'cancel reply' button label. Default 'Cancel reply'. 1917 1919 * @type string $label_submit The translatable 'submit' button label. Default 'Post a comment'. 1918 1920 * @type string $submit_button HTML format for the Submit button. … … 1976 1978 'title_reply_to' => __( 'Leave a Reply to %s' ), 1977 1979 'title_reply_before' => '<h3 id="reply-title" class="comment-reply-title">', 1978 1980 'title_reply_after' => '</h3>', 1981 'cancel_reply_before' => ' <small>', 1982 'cancel_reply_after' => '</small>', 1979 1983 'cancel_reply_link' => __( 'Cancel reply' ), 1980 1984 'label_submit' => __( 'Post Comment' ), 1981 1985 'submit_button' => '<input name="%1$s" type="submit" id="%2$s" class="%3$s" value="%4$s" />', … … 2012 2016 2013 2017 comment_form_title( $args['title_reply'], $args['title_reply_to'] ); 2014 2018 2015 echo ' <small>';2019 echo $args['cancel_reply_before']; 2016 2020 2017 2021 cancel_comment_reply_link( $args['cancel_reply_link'] ); 2018 2022 2019 echo '</small>';2023 echo $args['cancel_reply_after']; 2020 2024 2021 2025 echo $args['title_reply_after']; 2022 2026 ?>