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