Make WordPress Core


Ignore:
Timestamp:
12/03/2013 05:05:53 PM (11 years ago)
Author:
lancewillett
Message:

Twenty Fourteen: update comment blocks to match inline docs standards. Props DrewAPicture, see #25837.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentyfourteen/page-templates/full-width.php

    r26260 r26556  
    1414<?php
    1515    if ( is_front_page() && twentyfourteen_has_featured_posts() ) {
     16        // Include the featured content template.
    1617        get_template_part( 'featured-content' );
    1718    }
     
    2122        <div id="content" class="site-content" role="main">
    2223            <?php
    23                 while ( have_posts() ) :
    24                     the_post();
     24                // Start the Loop.
     25                while ( have_posts() ) : the_post();
    2526
     27                    // Include the page content template.
    2628                    get_template_part( 'content', 'page' );
    2729
Note: See TracChangeset for help on using the changeset viewer.