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

    r26227 r26556  
    1919            </header><!-- .page-header -->
    2020
    21             <?php
    22                     while ( have_posts() ) :
    23                         the_post();
     21                <?php
     22                    // Start the Loop.
     23                    while ( have_posts() ) : the_post();
    2424
     25                        /*
     26                         * Include the post format-specific template for the content. If you want to
     27                         * use this in a child theme, then include a file called called content-___.php
     28                         * (where ___ is the post format) and that will be used instead.
     29                         */
    2530                        get_template_part( 'content', get_post_format() );
     31
    2632                    endwhile;
     33                    // Previous/next post navigation.
    2734                    twentyfourteen_paging_nav();
    2835
    2936                else :
     37                    // If no content, include the "No posts found" template.
    3038                    get_template_part( 'content', 'none' );
    3139
Note: See TracChangeset for help on using the changeset viewer.