Changeset 47122 for trunk/src/wp-content/themes/twentyeleven/author.php
- Timestamp:
- 01/29/2020 12:43:23 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyeleven/author.php
r46088 r47122 37 37 <?php 38 38 /* 39 * Since we called the_post() above, we need to40 * rewind the loop back to the beginning that way41 * we can run the loop properly, in full.39 * Since we called the_post() above, we need 40 * to rewind the loop back to the beginning. 41 * That way we can run the loop properly, in full. 42 42 */ 43 43 rewind_posts(); … … 76 76 <?php endif; ?> 77 77 78 <?php /* Start the Loop */ ?>79 78 <?php 79 // Start the Loop. 80 80 while ( have_posts() ) : 81 81 the_post(); … … 86 86 * Include the Post-Format-specific template for the content. 87 87 * If you want to overload this in a child theme then include a file 88 * called content-___.php (where ___ is the Post Format name) and that will be used instead. 88 * called content-___.php (where ___ is the Post Format name) and that 89 * will be used instead. 89 90 */ 90 91 get_template_part( 'content', get_post_format() );
Note: See TracChangeset
for help on using the changeset viewer.