Changeset 42343 for trunk/src/wp-content/themes/twentyfourteen/archive.php
- Timestamp:
- 11/30/2017 11:09:33 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyfourteen/archive.php
r41349 r42343 28 28 <h1 class="page-title"> 29 29 <?php 30 31 30 if ( is_day() ) : 31 printf( __( 'Daily Archives: %s', 'twentyfourteen' ), get_the_date() ); 32 32 33 33 elseif ( is_month() ) : … … 47 47 <?php 48 48 // Start the Loop. 49 while ( have_posts() ) : the_post(); 49 while ( have_posts() ) : 50 the_post(); 50 51 51 52 53 54 55 56 52 /* 53 * Include the post format-specific template for the content. If you want to 54 * use this in a child theme, then include a file called content-___.php 55 * (where ___ is the post format) and that will be used instead. 56 */ 57 get_template_part( 'content', get_post_format() ); 57 58 58 59 endwhile;
Note: See TracChangeset
for help on using the changeset viewer.