diff options
Diffstat (limited to 'themes/twentyfourteen/tag.php')
-rw-r--r-- | themes/twentyfourteen/tag.php | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/themes/twentyfourteen/tag.php b/themes/twentyfourteen/tag.php index 3a3a3c5e..55099d15 100644 --- a/themes/twentyfourteen/tag.php +++ b/themes/twentyfourteen/tag.php @@ -19,7 +19,12 @@ get_header(); ?> <?php if ( have_posts() ) : ?> <header class="archive-header"> - <h1 class="archive-title"><?php printf( __( 'Tag Archives: %s', 'twentyfourteen' ), single_tag_title( '', false ) ); ?></h1> + <h1 class="archive-title"> + <?php + /* translators: %s: Tag title. */ + printf( __( 'Tag Archives: %s', 'twentyfourteen' ), single_tag_title( '', false ) ); + ?> + </h1> <?php // Show an optional term description. @@ -31,13 +36,13 @@ get_header(); ?> </header><!-- .archive-header --> <?php - // 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() ); |