summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'themes/twentyfifteen/author-bio.php')
-rw-r--r--themes/twentyfifteen/author-bio.php7
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 -->