diff options
Diffstat (limited to 'themes/twentyfourteen/category.php')
-rw-r--r-- | themes/twentyfourteen/category.php | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/themes/twentyfourteen/category.php b/themes/twentyfourteen/category.php index c193cc7b..16ccf12c 100644 --- a/themes/twentyfourteen/category.php +++ b/themes/twentyfourteen/category.php @@ -17,7 +17,12 @@ get_header(); ?> <?php if ( have_posts() ) : ?> <header class="archive-header"> - <h1 class="archive-title"><?php printf( __( 'Category Archives: %s', 'twentyfourteen' ), single_cat_title( '', false ) ); ?></h1> + <h1 class="archive-title"> + <?php + /* translators: %s: Category title. */ + printf( __( 'Category Archives: %s', 'twentyfourteen' ), single_cat_title( '', false ) ); + ?> + </h1> <?php // Show an optional term description. @@ -29,13 +34,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() ); |