summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'themes/twentyfourteen/author.php')
-rw-r--r--themes/twentyfourteen/author.php13
1 files changed, 7 insertions, 6 deletions
diff --git a/themes/twentyfourteen/author.php b/themes/twentyfourteen/author.php
index 2f1d47fb..fc3ba043 100644
--- a/themes/twentyfourteen/author.php
+++ b/themes/twentyfourteen/author.php
@@ -28,6 +28,7 @@ get_header(); ?>
*/
the_post();
+ /* translators: %s: Author display name. */
printf( __( 'All posts by %s', 'twentyfourteen' ), get_the_author() );
?>
</h1>
@@ -38,19 +39,19 @@ get_header(); ?>
<?php
/*
- * Since we called the_post() above, we need to rewind
- * the loop back to the beginning that way we can run
- * the loop properly, in full.
+ * Since we called the_post() above, we need
+ * to rewind the loop back to the beginning.
+ * That way we can run the loop properly, in full.
*/
rewind_posts();
- // Start the Loop.
+ // Start the Loop.
while ( have_posts() ) :
the_post();
/*
- * Include the post format-specific template for the content. If you want to
- * use this in a child theme, then include a file called content-___.php
+ * Include the post format-specific template for the content. If you want
+ * to use this in a child theme, then include a file called content-___.php
* (where ___ is the post format) and that will be used instead.
*/
get_template_part( 'content', get_post_format() );