summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony G. Basile <blueness@gentoo.org>2018-06-08 10:05:32 -0400
committerAnthony G. Basile <blueness@gentoo.org>2018-06-08 10:05:32 -0400
commit302b760bd00e82d9f5a8cef4ba821c1759a6601b (patch)
treeb128712347390937b10066e55745bdac5dfb638c /themes/twentyfourteen/archive.php
parentUpdate jetpack 6.0 (diff)
downloadblogs-gentoo-302b760bd00e82d9f5a8cef4ba821c1759a6601b.tar.gz
blogs-gentoo-302b760bd00e82d9f5a8cef4ba821c1759a6601b.tar.bz2
blogs-gentoo-302b760bd00e82d9f5a8cef4ba821c1759a6601b.zip
Update twentyfourteen 2.2
Diffstat (limited to 'themes/twentyfourteen/archive.php')
-rw-r--r--themes/twentyfourteen/archive.php19
1 files changed, 10 insertions, 9 deletions
diff --git a/themes/twentyfourteen/archive.php b/themes/twentyfourteen/archive.php
index 6a4deed0..e2b4b414 100644
--- a/themes/twentyfourteen/archive.php
+++ b/themes/twentyfourteen/archive.php
@@ -27,8 +27,8 @@ get_header(); ?>
<header class="page-header">
<h1 class="page-title">
<?php
- if ( is_day() ) :
- printf( __( 'Daily Archives: %s', 'twentyfourteen' ), get_the_date() );
+ if ( is_day() ) :
+ printf( __( 'Daily Archives: %s', 'twentyfourteen' ), get_the_date() );
elseif ( is_month() ) :
printf( __( 'Monthly Archives: %s', 'twentyfourteen' ), get_the_date( _x( 'F Y', 'monthly archives date format', 'twentyfourteen' ) ) );
@@ -46,14 +46,15 @@ get_header(); ?>
<?php
// Start the Loop.
- while ( have_posts() ) : the_post();
+ 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
- * (where ___ is the post format) and that will be used instead.
- */
- get_template_part( 'content', get_post_format() );
+ /*
+ * 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() );
endwhile;
// Previous/next page navigation.