Changeset 43571 for trunk/src/wp-content/themes/twentyfourteen/archive.php
- Timestamp:
- 08/17/2018 01:50:26 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyfourteen/archive.php
r42343 r43571 41 41 42 42 endif; 43 ?>43 ?> 44 44 </h1> 45 45 </header><!-- .page-header --> 46 46 47 <?php47 <?php 48 48 // Start the Loop. 49 while ( have_posts() ) :50 the_post();49 while ( have_posts() ) : 50 the_post(); 51 51 52 /*53 * Include the post format-specific template for the content. If you want to54 * use this in a child theme, then include a file called content-___.php55 * (where ___ is the post format) and that will be used instead.56 */57 get_template_part( 'content', get_post_format() );52 /* 53 * Include the post format-specific template for the content. If you want to 54 * use this in a child theme, then include a file called content-___.php 55 * (where ___ is the post format) and that will be used instead. 56 */ 57 get_template_part( 'content', get_post_format() ); 58 58 59 59 endwhile; … … 66 66 67 67 endif; 68 ?>68 ?> 69 69 </div><!-- #content --> 70 70 </section><!-- #primary -->
Note: See TracChangeset
for help on using the changeset viewer.