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-includes/theme-compat/sidebar.php

    r37985 r42343  
    1818    <div id="sidebar" role="complementary">
    1919        <ul>
    20             <?php   /* Widgetized sidebar, if you have the plugin installed. */
    21                     if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?>
     20            <?php
     21              /* Widgetized sidebar, if you have the plugin installed. */
     22            if ( ! function_exists( 'dynamic_sidebar' ) || ! dynamic_sidebar() ) :
     23                    ?>
    2224            <li>
    2325                <?php get_search_form(); ?>
     
    2527
    2628            <!-- Author information is disabled per default. Uncomment and fill in your details if you want to use it.
    27             <li><h2><?php _e('Author'); ?></h2>
     29            <li><h2><?php _e( 'Author' ); ?></h2>
    2830            <p>A little something about you, the author. Nothing lengthy, just an overview.</p>
    2931            </li>
    3032            -->
    3133
    32             <?php if ( is_404() || is_category() || is_day() || is_month() ||
    33                         is_year() || is_search() || is_paged() ) :
    34             ?> <li>
     34            <?php
     35            if ( is_404() || is_category() || is_day() || is_month() ||
     36                is_year() || is_search() || is_paged() ) :
     37            ?>
     38             <li>
    3539
    3640            <?php if ( is_404() ) : /* If this is a 404 page */ ?>
    3741            <?php elseif ( is_category() ) : /* If this is a category archive */ ?>
    38                 <p><?php /* translators: %s: category name */
    39                     printf( __( 'You are currently browsing the archives for the %s category.' ),
     42                <p>
     43                <?php
     44                /* translators: %s: category name */
     45                    printf(
     46                        __( 'You are currently browsing the archives for the %s category.' ),
    4047                        single_cat_title( '', false )
    4148                    );
    42                 ?></p>
     49                ?>
     50                </p>
    4351
    4452            <?php elseif ( is_day() ) : /* If this is a daily archive */ ?>
    45                 <p><?php /* translators: 1: site link, 2: archive date */
    46                     printf( __( 'You are currently browsing the %1$s blog archives for the day %2$s.' ),
     53                <p>
     54                <?php
     55                /* translators: 1: site link, 2: archive date */
     56                    printf(
     57                        __( 'You are currently browsing the %1$s blog archives for the day %2$s.' ),
    4758                        sprintf( '<a href="%1$s/">%2$s</a>', get_bloginfo( 'url' ), get_bloginfo( 'name' ) ),
    4859                        get_the_time( __( 'l, F jS, Y' ) )
    4960                    );
    50                 ?></p>
     61                ?>
     62                </p>
    5163
    5264            <?php elseif ( is_month() ) : /* If this is a monthly archive */ ?>
    53                 <p><?php /* translators: 1: site link, 2: archive month */
    54                     printf( __( 'You are currently browsing the %1$s blog archives for %2$s.' ),
     65                <p>
     66                <?php
     67                /* translators: 1: site link, 2: archive month */
     68                    printf(
     69                        __( 'You are currently browsing the %1$s blog archives for %2$s.' ),
    5570                        sprintf( '<a href="%1$s/">%2$s</a>', get_bloginfo( 'url' ), get_bloginfo( 'name' ) ),
    5671                        get_the_time( __( 'F, Y' ) )
    5772                    );
    58                 ?></p>
     73                ?>
     74                </p>
    5975
    6076            <?php elseif ( is_year() ) : /* If this is a yearly archive */ ?>
    61                 <p><?php /* translators: 1: site link, 2: archive year */
    62                     printf( __( 'You are currently browsing the %1$s blog archives for the year %2$s.' ),
     77                <p>
     78                <?php
     79                /* translators: 1: site link, 2: archive year */
     80                    printf(
     81                        __( 'You are currently browsing the %1$s blog archives for the year %2$s.' ),
    6382                        sprintf( '<a href="%1$s/">%2$s</a>', get_bloginfo( 'url' ), get_bloginfo( 'name' ) ),
    6483                        get_the_time( 'Y' )
    6584                    );
    66                 ?></p>
     85                ?>
     86                </p>
    6787
    6888            <?php elseif ( is_search() ) : /* If this is a search result */ ?>
    69                 <p><?php /* translators: 1: site link, 2: search query */
    70                     printf( __( 'You have searched the %1$s blog archives for <strong>&#8216;%2$s&#8217;</strong>. If you are unable to find anything in these search results, you can try one of these links.' ),
     89                <p>
     90                <?php
     91                /* translators: 1: site link, 2: search query */
     92                    printf(
     93                        __( 'You have searched the %1$s blog archives for <strong>&#8216;%2$s&#8217;</strong>. If you are unable to find anything in these search results, you can try one of these links.' ),
    7194                        sprintf( '<a href="%1$s/">%2$s</a>', get_bloginfo( 'url' ), get_bloginfo( 'name' ) ),
    7295                        esc_html( get_search_query() )
    7396                    );
    74                 ?></p>
     97                ?>
     98                </p>
    7599
    76100            <?php elseif ( isset( $_GET['paged'] ) && ! empty( $_GET['paged'] ) ) : /* If this set is paginated */ ?>
    77                 <p><?php /* translators: %s: site link */
    78                     printf( __( 'You are currently browsing the %s blog archives.' ),
     101                <p>
     102                <?php
     103                /* translators: %s: site link */
     104                    printf(
     105                        __( 'You are currently browsing the %s blog archives.' ),
    79106                        sprintf( '<a href="%1$s/">%2$s</a>', get_bloginfo( 'url' ), get_bloginfo( 'name' ) )
    80107                    );
    81                 ?></p>
     108                ?>
     109                </p>
    82110
    83111            <?php endif; ?>
     
    87115        </ul>
    88116        <ul role="navigation">
    89             <?php wp_list_pages('title_li=<h2>' . __('Pages') . '</h2>' ); ?>
     117            <?php wp_list_pages( 'title_li=<h2>' . __( 'Pages' ) . '</h2>' ); ?>
    90118
    91             <li><h2><?php _e('Archives'); ?></h2>
     119            <li><h2><?php _e( 'Archives' ); ?></h2>
    92120                <ul>
    93                 <?php wp_get_archives(array('type' => 'monthly')); ?>
     121                <?php wp_get_archives( array( 'type' => 'monthly' ) ); ?>
    94122                </ul>
    95123            </li>
    96124
    97             <?php wp_list_categories(array('show_count' => 1, 'title_li' => '<h2>' . __('Categories') . '</h2>')); ?>
     125            <?php
     126            wp_list_categories(
     127                array(
     128                    'show_count' => 1,
     129                    'title_li'   => '<h2>' . __( 'Categories' ) . '</h2>',
     130                )
     131            );
     132?>
    98133        </ul>
    99134        <ul>
     
    101136                <?php wp_list_bookmarks(); ?>
    102137
    103                 <li><h2><?php _e('Meta'); ?></h2>
     138                <li><h2><?php _e( 'Meta' ); ?></h2>
    104139                <ul>
    105140                    <?php wp_register(); ?>
Note: See TracChangeset for help on using the changeset viewer.