Changeset 17802 for trunk/wp-content/themes/twentyeleven/tag.php
- Timestamp:
- 05/04/2011 10:54:50 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/themes/twentyeleven/tag.php
r17787 r17802 28 28 <?php while ( have_posts() ) : the_post(); ?> 29 29 30 <?php get_template_part( 'content', get_post_format() ); ?> 30 <?php 31 /* Include the Post-Format-specific template for the content. 32 * If you want to overload this in a child theme then include a file 33 * called loop-___.php (where ___ is the Post Format name) and that will be used instead. 34 */ 35 get_template_part( 'content', get_post_format() ); 36 ?> 31 37 32 38 <?php endwhile; ?>
Note: See TracChangeset
for help on using the changeset viewer.