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/twentysixteen/header.php

    r42228 r42343  
    3636                    <?php else : ?>
    3737                        <p class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></p>
    38                     <?php endif;
     38                    <?php
     39                    endif;
    3940
    4041                    $description = get_bloginfo( 'description', 'display' );
    41                     if ( $description || is_customize_preview() ) : ?>
     42if ( $description || is_customize_preview() ) :
     43                    ?>
    4244                        <p class="site-description"><?php echo $description; ?></p>
    4345                    <?php endif; ?>
     
    5153                            <nav id="site-navigation" class="main-navigation" role="navigation" aria-label="<?php esc_attr_e( 'Primary Menu', 'twentysixteen' ); ?>">
    5254                                <?php
    53                                     wp_nav_menu( array(
    54                                         'theme_location' => 'primary',
    55                                         'menu_class'     => 'primary-menu',
    56                                     ) );
     55                                    wp_nav_menu(
     56                                        array(
     57                                            'theme_location' => 'primary',
     58                                            'menu_class' => 'primary-menu',
     59                                        )
     60                                    );
    5761                                ?>
    5862                            </nav><!-- .main-navigation -->
     
    6266                            <nav id="social-navigation" class="social-navigation" role="navigation" aria-label="<?php esc_attr_e( 'Social Links Menu', 'twentysixteen' ); ?>">
    6367                                <?php
    64                                     wp_nav_menu( array(
    65                                         'theme_location' => 'social',
    66                                         'menu_class'     => 'social-links-menu',
    67                                         'depth'          => 1,
    68                                         'link_before'    => '<span class="screen-reader-text">',
    69                                         'link_after'     => '</span>',
    70                                     ) );
     68                                    wp_nav_menu(
     69                                        array(
     70                                            'theme_location' => 'social',
     71                                            'menu_class'  => 'social-links-menu',
     72                                            'depth'       => 1,
     73                                            'link_before' => '<span class="screen-reader-text">',
     74                                            'link_after'  => '</span>',
     75                                        )
     76                                    );
    7177                                ?>
    7278                            </nav><!-- .social-navigation -->
Note: See TracChangeset for help on using the changeset viewer.