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