Changeset 26556 for trunk/src/wp-content/themes/twentyfourteen/single.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/single.php
r26260 r26556 13 13 <div id="content" class="site-content" role="main"> 14 14 <?php 15 while ( have_posts() ) :16 15 // Start the Loop. 16 while ( have_posts() ) : the_post(); 17 17 18 /* 19 * Include the post format-specific template for the content. If you want to 20 * use this in a child theme, then include a file called called content-___.php 21 * (where ___ is the post format) and that will be used instead. 22 */ 18 23 get_template_part( 'content', get_post_format() ); 19 24 25 // Previous/next post navigation. 20 26 twentyfourteen_post_nav(); 21 27
Note: See TracChangeset
for help on using the changeset viewer.