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