diff --git a/src/wp-includes/author-template.php b/src/wp-includes/author-template.php
index 184d7d0f38..a1c8be8ab6 100644
a
|
b
|
function get_the_author_link() { |
238 | 238 | $author_display_name = get_the_author(); |
239 | 239 | |
240 | 240 | $link = sprintf( |
241 | | '<a href="%1$s" title="%2$s" rel="author external">%3$s</a>', |
| 241 | '<a href="%1$s" rel="author external">%3$s</a>', |
242 | 242 | esc_url( $author_url ), |
243 | 243 | /* translators: %s: Author's display name. */ |
244 | | esc_attr( sprintf( __( 'Visit %s’s website' ), $author_display_name ) ), |
245 | 244 | $author_display_name |
246 | 245 | ); |
247 | 246 | |
… |
… |
function get_the_author_posts_link() { |
318 | 317 | } |
319 | 318 | |
320 | 319 | $link = sprintf( |
321 | | '<a href="%1$s" title="%2$s" rel="author">%3$s</a>', |
| 320 | '<a href="%1$s" rel="author">%3$s</a>', |
322 | 321 | esc_url( get_author_posts_url( $authordata->ID, $authordata->user_nicename ) ), |
323 | 322 | /* translators: %s: Author's display name. */ |
324 | | esc_attr( sprintf( __( 'Posts by %s' ), get_the_author() ) ), |
325 | 323 | get_the_author() |
326 | 324 | ); |
327 | 325 | |
… |
… |
function wp_list_authors( $args = '' ) { |
531 | 529 | } |
532 | 530 | |
533 | 531 | $link = sprintf( |
534 | | '<a href="%1$s" title="%2$s">%3$s</a>', |
| 532 | '<a href="%1$s" >%3$s</a>', |
535 | 533 | esc_url( get_author_posts_url( $author->ID, $author->user_nicename ) ), |
536 | 534 | /* translators: %s: Author's display name. */ |
537 | | esc_attr( sprintf( __( 'Posts by %s' ), $author->display_name ) ), |
538 | 535 | $name |
539 | 536 | ); |
540 | 537 | |