Make WordPress Core


Ignore:
Timestamp:
11/30/2017 11:09:33 PM (7 years ago)
Author:
pento
Message:

Code is Poetry.
WordPress' code just... wasn't.
This is now dealt with.

Props jrf, pento, netweb, GaryJ, jdgrimes, westonruter, Greg Sherwood from PHPCS, and everyone who's ever contributed to WPCS and PHPCS.
Fixes #41057.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentyfourteen/author.php

    r41349 r42343  
    4646
    4747                    // Start the Loop.
    48                     while ( have_posts() ) : the_post();
     48            while ( have_posts() ) :
     49                the_post();
    4950
    50                         /*
    51                         * Include the post format-specific template for the content. If you want to
    52                         * use this in a child theme, then include a file called content-___.php
    53                         * (where ___ is the post format) and that will be used instead.
    54                         */
    55                         get_template_part( 'content', get_post_format() );
     51                /*
     52                * Include the post format-specific template for the content. If you want to
     53                * use this in a child theme, then include a file called content-___.php
     54                * (where ___ is the post format) and that will be used instead.
     55                */
     56                get_template_part( 'content', get_post_format() );
    5657
    5758                    endwhile;
Note: See TracChangeset for help on using the changeset viewer.