Changeset 42343 for trunk/src/wp-content/themes/twentytwelve/archive.php
- Timestamp:
- 11/30/2017 11:09:33 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentytwelve/archive.php
r41349 r42343 25 25 <?php if ( have_posts() ) : ?> 26 26 <header class="archive-header"> 27 <h1 class="archive-title"><?php 28 if ( is_day() ) : 29 printf( __( 'Daily Archives: %s', 'twentytwelve' ), '<span>' . get_the_date() . '</span>' ); 27 <h1 class="archive-title"> 28 <?php 29 if ( is_day() ) : 30 printf( __( 'Daily Archives: %s', 'twentytwelve' ), '<span>' . get_the_date() . '</span>' ); 30 31 elseif ( is_month() ) : 31 32 printf( __( 'Monthly Archives: %s', 'twentytwelve' ), '<span>' . get_the_date( _x( 'F Y', 'monthly archives date format', 'twentytwelve' ) ) . '</span>' ); … … 35 36 _e( 'Archives', 'twentytwelve' ); 36 37 endif; 37 ?></h1> 38 ?> 39 </h1> 38 40 </header><!-- .archive-header --> 39 41 40 42 <?php 41 43 /* Start the Loop */ 42 while ( have_posts() ) : the_post(); 44 while ( have_posts() ) : 45 the_post(); 43 46 44 47 /* Include the post format-specific template for the content. If you want to
Note: See TracChangeset
for help on using the changeset viewer.