Changeset 26556 for trunk/src/wp-content/themes/twentyfourteen/archive.php
- Timestamp:
- 12/03/2013 05:05:53 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyfourteen/archive.php
r26217 r26556 46 46 47 47 <?php 48 while ( have_posts() ) :49 48 // Start the Loop. 49 while ( have_posts() ) : the_post(); 50 50 51 /* 52 * Include the post format-specific template for the content. If you want to 53 * use this in a child theme, then include a file called called content-___.php 54 * (where ___ is the post format) and that will be used instead. 55 */ 51 56 get_template_part( 'content', get_post_format() ); 57 52 58 endwhile; 59 // Previous/next page navigation. 53 60 twentyfourteen_paging_nav(); 54 61 55 62 else : 63 // If no content, include the "No posts found" template. 56 64 get_template_part( 'content', 'none' ); 57 65
Note: See TracChangeset
for help on using the changeset viewer.