summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'themes/twentyfourteen/search.php')
-rw-r--r--themes/twentyfourteen/search.php13
1 files changed, 9 insertions, 4 deletions
diff --git a/themes/twentyfourteen/search.php b/themes/twentyfourteen/search.php
index 6b20315a..80dc4d1e 100644
--- a/themes/twentyfourteen/search.php
+++ b/themes/twentyfourteen/search.php
@@ -15,17 +15,22 @@ get_header(); ?>
<?php if ( have_posts() ) : ?>
<header class="page-header">
- <h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'twentyfourteen' ), get_search_query() ); ?></h1>
+ <h1 class="page-title">
+ <?php
+ /* translators: %s: Search query. */
+ printf( __( 'Search Results for: %s', 'twentyfourteen' ), get_search_query() );
+ ?>
+ </h1>
</header><!-- .page-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() );