mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-22 17:18:32 +01:00
Comments: Enable using reply_to_text
as visible link.
Add an option `show_reply_to_text` as an option to use the current `aria-label` attribute on comment reply links as the visible link. If used, remove the `aria-label`. Also add documentation of the `reply_to_text` parameter to the function documentation. Props halilesen, sabernhardt, snehapatil02, jainil07, joedolson. Fixes #59965. Built from https://develop.svn.wordpress.org/trunk@59181 git-svn-id: http://core.svn.wordpress.org/trunk@58576 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
847bac4a16
commit
449c91edb7
@ -1739,7 +1739,11 @@ function comments_popup_link( $zero = false, $one = false, $more = false, $css_c
|
||||
* @type string $respond_id The selector identifying the responding comment. Passed as the third parameter
|
||||
* to addComment.moveForm(), and appended to the link URL as a hash value.
|
||||
* Default 'respond'.
|
||||
* @type string $reply_text The text of the Reply link. Default 'Reply'.
|
||||
* @type string $reply_text The visible text of the Reply link. Default 'Reply'.
|
||||
* @type string $reply_to_text The accessible name of the Reply link, using `%s` as a placeholder
|
||||
* for the comment author's name. Default 'Reply to %s'.
|
||||
* Should start with the visible `reply_text` value.
|
||||
* @type bool $show_reply_to_text Whether to use `reply_to_text` as visible link text. Default false.
|
||||
* @type string $login_text The text of the link to reply if logged out. Default 'Log in to Reply'.
|
||||
* @type int $max_depth The max depth of the comment tree. Default 0.
|
||||
* @type int $depth The depth of the new comment. Must be greater than 0 and less than the value
|
||||
@ -1764,6 +1768,7 @@ function get_comment_reply_link( $args = array(), $comment = null, $post = null
|
||||
'depth' => 0,
|
||||
'before' => '',
|
||||
'after' => '',
|
||||
'show_reply_to_text' => false,
|
||||
);
|
||||
|
||||
$args = wp_parse_args( $args, $defaults );
|
||||
@ -1829,8 +1834,14 @@ function get_comment_reply_link( $args = array(), $comment = null, $post = null
|
||||
|
||||
$data_attribute_string = trim( $data_attribute_string );
|
||||
|
||||
$reply_text = $args['show_reply_to_text']
|
||||
? sprintf( $args['reply_to_text'], get_comment_author( $comment ) )
|
||||
: $args['reply_text'];
|
||||
|
||||
$aria_label = $args['show_reply_to_text'] ? '' : sprintf( $args['reply_to_text'], get_comment_author( $comment ) );
|
||||
|
||||
$link = sprintf(
|
||||
"<a rel='nofollow' class='comment-reply-link' href='%s' %s aria-label='%s'>%s</a>",
|
||||
'<a rel="nofollow" class="comment-reply-link" href="%s" %s%s>%s</a>',
|
||||
esc_url(
|
||||
add_query_arg(
|
||||
array(
|
||||
@ -1842,8 +1853,8 @@ function get_comment_reply_link( $args = array(), $comment = null, $post = null
|
||||
)
|
||||
) . '#' . $args['respond_id'],
|
||||
$data_attribute_string,
|
||||
esc_attr( sprintf( $args['reply_to_text'], get_comment_author( $comment ) ) ),
|
||||
$args['reply_text']
|
||||
$aria_label ? ' aria-label="' . esc_attr( $aria_label ) . '"' : '',
|
||||
$reply_text
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -16,7 +16,7 @@
|
||||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.7-beta1-59180';
|
||||
$wp_version = '6.7-beta1-59181';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
Loading…
Reference in New Issue
Block a user