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/single.php

    r26260 r26556  
    1313        <div id="content" class="site-content" role="main">
    1414            <?php
    15                 while ( have_posts() ) :
    16                     the_post();
     15                // Start the Loop.
     16                while ( have_posts() ) : the_post();
    1717
     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                     */
    1823                    get_template_part( 'content', get_post_format() );
    1924
     25                    // Previous/next post navigation.
    2026                    twentyfourteen_post_nav();
    2127
Note: See TracChangeset for help on using the changeset viewer.