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/taxonomy-post_format.php

    r26217 r26556  
    5454
    5555            <?php
    56                     while ( have_posts() ) :
    57                         the_post();
     56                    // Start the Loop.
     57                    while ( have_posts() ) : the_post();
    5858
     59                        /*
     60                         * Include the post format-specific template for the content. If you want to
     61                         * use this in a child theme, then include a file called called content-___.php
     62                         * (where ___ is the post format) and that will be used instead.
     63                         */
    5964                        get_template_part( 'content', get_post_format() );
     65
    6066                    endwhile;
     67                    // Previous/next page navigation.
    6168                    twentyfourteen_paging_nav();
    6269
    6370                else :
     71                    // If no content, include the "No posts found" template.
    6472                    get_template_part( 'content', 'none' );
    6573
Note: See TracChangeset for help on using the changeset viewer.