Changeset 26761 for trunk/src/wp-content/themes/twentyfourteen/page.php
- Timestamp:
- 12/07/2013 12:53:33 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyfourteen/page.php
r26757 r26761 17 17 18 18 <?php 19 if ( is_front_page() && twentyfourteen_has_featured_posts() ) :19 if ( is_front_page() && twentyfourteen_has_featured_posts() ) { 20 20 // Include the featured content template. 21 21 get_template_part( 'featured-content' ); 22 endif;22 } 23 23 ?> 24 24 <div id="primary" class="content-area"> … … 33 33 34 34 // If comments are open or we have at least one comment, load up the comment template. 35 if ( comments_open() || get_comments_number() ) :35 if ( comments_open() || get_comments_number() ) { 36 36 comments_template(); 37 endif;37 } 38 38 endwhile; 39 39 ?>
Note: See TracChangeset
for help on using the changeset viewer.