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