Skip to content

Commit 3741987

Browse files
authored
Move variable assignment down one line
1 parent 64ede44 commit 3741987

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/wp-includes/author-template.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,8 +244,9 @@ function get_the_author_link( $use_title_attr = true ) {
244244

245245
$author_url = get_the_author_meta( 'url' );
246246
$author_display_name = get_the_author();
247+
247248
/* translators: %s: Author's display name. */
248-
$author_title = sprintf( __( 'Visit %s’s website' ), $author_display_name );
249+
$author_title = sprintf( __( 'Visit %s’s website' ), $author_display_name );
249250

250251
$link = sprintf(
251252
'<a href="%1$s"%2$s rel="author external">%3$s</a>',

0 commit comments

Comments
 (0)