diff options
author | Yury German <blueknight@gentoo.org> | 2022-01-23 19:00:40 -0500 |
---|---|---|
committer | Yury German <blueknight@gentoo.org> | 2022-01-23 19:00:40 -0500 |
commit | 89391db6e13b481e2d6eabe0a8475e15c8f9ec28 (patch) | |
tree | eabe327bfe8c37717783217d9ee8fa5c133b367a /themes/twentyfifteen/author-bio.php | |
parent | Updating Classic Editor, Google Authenticatior, Jetpack, Public Post Preview,... (diff) | |
download | blogs-gentoo-89391db6e13b481e2d6eabe0a8475e15c8f9ec28.tar.gz blogs-gentoo-89391db6e13b481e2d6eabe0a8475e15c8f9ec28.tar.bz2 blogs-gentoo-89391db6e13b481e2d6eabe0a8475e15c8f9ec28.zip |
Bumb Mantra to 3.20 to 3.3.1 and twentififteen from 2.5 to 3.0
Signed-off-by: Yury German <blueknight@gentoo.org>
Diffstat (limited to 'themes/twentyfifteen/author-bio.php')
-rw-r--r-- | themes/twentyfifteen/author-bio.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/themes/twentyfifteen/author-bio.php b/themes/twentyfifteen/author-bio.php index 839df911..995ad1a4 100644 --- a/themes/twentyfifteen/author-bio.php +++ b/themes/twentyfifteen/author-bio.php @@ -13,7 +13,7 @@ <div class="author-avatar"> <?php /** - * Filter the author bio avatar size. + * Filters the author bio avatar size. * * @since Twenty Fifteen 1.0 * @@ -31,7 +31,10 @@ <p class="author-bio"> <?php the_author_meta( 'description' ); ?> <a class="author-link" href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>" rel="author"> - <?php printf( __( 'View all posts by %s', 'twentyfifteen' ), get_the_author() ); ?> + <?php + /* translators: %s: Author display name. */ + printf( __( 'View all posts by %s', 'twentyfifteen' ), get_the_author() ); + ?> </a> </p><!-- .author-bio --> |