mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-22 17:18:32 +01:00
Comments: in comment_form()
, add args for cancel_reply_before
and cancel_reply_after
to eradicate remaining hard-coded HTML bits.
Props MikeHansenMe. Fixes #23797. Built from https://develop.svn.wordpress.org/trunk@34523 git-svn-id: http://core.svn.wordpress.org/trunk@34487 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
223a2d0f7b
commit
2c23ca7411
@ -1890,7 +1890,8 @@ function wp_list_comments( $args = array(), $comments = null ) {
|
|||||||
* @since 3.0.0
|
* @since 3.0.0
|
||||||
* @since 4.1.0 Introduced the 'class_submit' argument.
|
* @since 4.1.0 Introduced the 'class_submit' argument.
|
||||||
* @since 4.2.0 Introduced 'submit_button' and 'submit_fields' arguments.
|
* @since 4.2.0 Introduced 'submit_button' and 'submit_fields' arguments.
|
||||||
* @since 4.4.0 Introduced 'title_reply_before' and 'title_reply_after' arguments.
|
* @since 4.4.0 Introduced 'title_reply_before', 'title_reply_after',
|
||||||
|
* 'cancel_reply_before', and 'cancel_reply_after' arguments.
|
||||||
*
|
*
|
||||||
* @param array $args {
|
* @param array $args {
|
||||||
* Optional. Default arguments and form fields to override.
|
* Optional. Default arguments and form fields to override.
|
||||||
@ -1919,6 +1920,8 @@ function wp_list_comments( $args = array(), $comments = null ) {
|
|||||||
* Default: '<h3 id="reply-title" class="comment-reply-title">'.
|
* Default: '<h3 id="reply-title" class="comment-reply-title">'.
|
||||||
* @type string $title_reply_after HTML displayed after the comment form title.
|
* @type string $title_reply_after HTML displayed after the comment form title.
|
||||||
* Default: '</h3>'.
|
* Default: '</h3>'.
|
||||||
|
* @type string $cancel_reply_before HTML displayed before the cancel reply link.
|
||||||
|
* @type string $cancel_reply_after HTML displayed after the cancel reply link.
|
||||||
* @type string $cancel_reply_link The translatable 'cancel reply' button label. Default 'Cancel reply'.
|
* @type string $cancel_reply_link The translatable 'cancel reply' button label. Default 'Cancel reply'.
|
||||||
* @type string $label_submit The translatable 'submit' button label. Default 'Post a comment'.
|
* @type string $label_submit The translatable 'submit' button label. Default 'Post a comment'.
|
||||||
* @type string $submit_button HTML format for the Submit button.
|
* @type string $submit_button HTML format for the Submit button.
|
||||||
@ -1982,6 +1985,8 @@ function comment_form( $args = array(), $post_id = null ) {
|
|||||||
'title_reply_to' => __( 'Leave a Reply to %s' ),
|
'title_reply_to' => __( 'Leave a Reply to %s' ),
|
||||||
'title_reply_before' => '<h3 id="reply-title" class="comment-reply-title">',
|
'title_reply_before' => '<h3 id="reply-title" class="comment-reply-title">',
|
||||||
'title_reply_after' => '</h3>',
|
'title_reply_after' => '</h3>',
|
||||||
|
'cancel_reply_before' => ' <small>',
|
||||||
|
'cancel_reply_after' => '</small>',
|
||||||
'cancel_reply_link' => __( 'Cancel reply' ),
|
'cancel_reply_link' => __( 'Cancel reply' ),
|
||||||
'label_submit' => __( 'Post Comment' ),
|
'label_submit' => __( 'Post Comment' ),
|
||||||
'submit_button' => '<input name="%1$s" type="submit" id="%2$s" class="%3$s" value="%4$s" />',
|
'submit_button' => '<input name="%1$s" type="submit" id="%2$s" class="%3$s" value="%4$s" />',
|
||||||
@ -2018,11 +2023,11 @@ function comment_form( $args = array(), $post_id = null ) {
|
|||||||
|
|
||||||
comment_form_title( $args['title_reply'], $args['title_reply_to'] );
|
comment_form_title( $args['title_reply'], $args['title_reply_to'] );
|
||||||
|
|
||||||
echo ' <small>';
|
echo $args['cancel_reply_before'];
|
||||||
|
|
||||||
cancel_comment_reply_link( $args['cancel_reply_link'] );
|
cancel_comment_reply_link( $args['cancel_reply_link'] );
|
||||||
|
|
||||||
echo '</small>';
|
echo $args['cancel_reply_after'];
|
||||||
|
|
||||||
echo $args['title_reply_after'];
|
echo $args['title_reply_after'];
|
||||||
?>
|
?>
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.4-alpha-34522';
|
$wp_version = '4.4-alpha-34523';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
Loading…
Reference in New Issue
Block a user