summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'themes/twentysixteen/template-parts/biography.php')
-rw-r--r--themes/twentysixteen/template-parts/biography.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/themes/twentysixteen/template-parts/biography.php b/themes/twentysixteen/template-parts/biography.php
index 9e2e5b87..15aa70cd 100644
--- a/themes/twentysixteen/template-parts/biography.php
+++ b/themes/twentysixteen/template-parts/biography.php
@@ -12,7 +12,7 @@
<div class="author-avatar">
<?php
/**
- * Filter the Twenty Sixteen author bio avatar size.
+ * Filters the Twenty Sixteen author bio avatar size.
*
* @since Twenty Sixteen 1.0
*
@@ -30,7 +30,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', 'twentysixteen' ), get_the_author() ); ?>
+ <?php
+ /* translators: %s: The post author display name. */
+ printf( __( 'View all posts by %s', 'twentysixteen' ), get_the_author() );
+ ?>
</a>
</p><!-- .author-bio -->
</div><!-- .author-description -->