summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYury German <blueknight@gentoo.org>2022-01-23 19:12:12 -0500
committerYury German <blueknight@gentoo.org>2022-01-23 19:12:12 -0500
commit856daf897233b153771276d227f05f8f33a6189e (patch)
tree0b5f869863fb7810f8bdf30b848606779415f2d0 /themes/twentysixteen/template-parts/biography.php
parentPlugin - akismet update from 4.1.3 to 4.2.1 (diff)
downloadblogs-gentoo-856daf897233b153771276d227f05f8f33a6189e.tar.gz
blogs-gentoo-856daf897233b153771276d227f05f8f33a6189e.tar.bz2
blogs-gentoo-856daf897233b153771276d227f05f8f33a6189e.zip
twentyfourteen upg 2.7 to 3.2 and twentysixteen from 2.0 to 2.5
Signed-off-by: Yury German <blueknight@gentoo.org>
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 -->