--- a/wp/wp-content/themes/twentytwelve/archive.php Tue Jun 09 11:14:17 2015 +0000
+++ b/wp/wp-content/themes/twentytwelve/archive.php Mon Oct 14 17:39:30 2019 +0200
@@ -24,9 +24,10 @@
<?php if ( have_posts() ) : ?>
<header class="archive-header">
- <h1 class="archive-title"><?php
- if ( is_day() ) :
- printf( __( 'Daily Archives: %s', 'twentytwelve' ), '<span>' . get_the_date() . '</span>' );
+ <h1 class="archive-title">
+ <?php
+ if ( is_day() ) :
+ printf( __( 'Daily Archives: %s', 'twentytwelve' ), '<span>' . get_the_date() . '</span>' );
elseif ( is_month() ) :
printf( __( 'Monthly Archives: %s', 'twentytwelve' ), '<span>' . get_the_date( _x( 'F Y', 'monthly archives date format', 'twentytwelve' ) ) . '</span>' );
elseif ( is_year() ) :
@@ -34,15 +35,17 @@
else :
_e( 'Archives', 'twentytwelve' );
endif;
- ?></h1>
+ ?>
+ </h1>
</header><!-- .archive-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
- * this in a child theme then include a file called called content-___.php
+ * 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() );