Make WordPress Core


Ignore:
Timestamp:
11/30/2017 11:09:33 PM (6 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/category.php

    r41349 r42343  
    2323                    // Show an optional term description.
    2424                    $term_description = term_description();
    25                     if ( ! empty( $term_description ) ) :
    26                         printf( '<div class="taxonomy-description">%s</div>', $term_description );
     25                if ( ! empty( $term_description ) ) :
     26                    printf( '<div class="taxonomy-description">%s</div>', $term_description );
    2727                    endif;
    2828                ?>
     
    3131            <?php
    3232                    // Start the Loop.
    33                     while ( have_posts() ) : the_post();
     33            while ( have_posts() ) :
     34                the_post();
    3435
    35                     /*
    36                      * Include the post format-specific template for the content. If you want to
    37                      * use this in a child theme, then include a file called content-___.php
    38                      * (where ___ is the post format) and that will be used instead.
    39                      */
    40                     get_template_part( 'content', get_post_format() );
     36                /*
     37                * Include the post format-specific template for the content. If you want to
     38                * use this in a child theme, then include a file called content-___.php
     39                * (where ___ is the post format) and that will be used instead.
     40                */
     41                get_template_part( 'content', get_post_format() );
    4142
    4243                    endwhile;
Note: See TracChangeset for help on using the changeset viewer.