diff --git a/src/wp-includes/author-template.php b/src/wp-includes/author-template.php
index 184d7d0f38..02c291cdac 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 | |