Changeset 26556 for trunk/src/wp-content/themes/twentyfourteen/category.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/category.php
r26217 r26556 30 30 31 31 <?php 32 while ( have_posts() ) :33 32 // Start the Loop. 33 while ( have_posts() ) : the_post(); 34 34 35 get_template_part( 'content', get_post_format() ); 35 /* 36 * Include the post format-specific template for the content. If you want to 37 * use this in a child theme, then include a file called called content-___.php 38 * (where ___ is the post format) and that will be used instead. 39 */ 40 get_template_part( 'content', get_post_format() ); 41 36 42 endwhile; 43 // Previous/next page navigation. 37 44 twentyfourteen_paging_nav(); 38 45 39 46 else : 47 // If no content, include the "No posts found" template. 40 48 get_template_part( 'content', 'none' ); 41 49
Note: See TracChangeset
for help on using the changeset viewer.