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/twentyeleven/tag.php

    r25746 r42343  
    1616
    1717                <header class="page-header">
    18                     <h1 class="page-title"><?php
     18                    <h1 class="page-title">
     19                    <?php
    1920                        printf( __( 'Tag Archives: %s', 'twentyeleven' ), '<span>' . single_tag_title( '', false ) . '</span>' );
    20                     ?></h1>
     21                    ?>
     22                    </h1>
    2123
    2224                    <?php
    2325                        $tag_description = tag_description();
    24                         if ( ! empty( $tag_description ) ) {
    25                             /**
    26                             * Filter the default Twenty Eleven tag description.
    27                             *
    28                             * @since Twenty Eleven 1.0
    29                             *
    30                             * @param string The default tag description.
    31                             */
    32                             echo apply_filters( 'tag_archive_meta', '<div class="tag-archive-meta">' . $tag_description . '</div>' );
    33                         }
     26                    if ( ! empty( $tag_description ) ) {
     27                        /**
     28                        * Filter the default Twenty Eleven tag description.
     29                        *
     30                        * @since Twenty Eleven 1.0
     31                        *
     32                        * @param string The default tag description.
     33                        */
     34                        echo apply_filters( 'tag_archive_meta', '<div class="tag-archive-meta">' . $tag_description . '</div>' );
     35                    }
    3436                    ?>
    3537                </header>
     
    3840
    3941                <?php /* Start the Loop */ ?>
    40                 <?php while ( have_posts() ) : the_post(); ?>
     42                <?php
     43                while ( have_posts() ) :
     44                    the_post();
     45?>
    4146
    4247                    <?php
Note: See TracChangeset for help on using the changeset viewer.