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/twentyseventeen/footer.php

    r40472 r42343  
    2222                get_template_part( 'template-parts/footer/footer', 'widgets' );
    2323
    24                 if ( has_nav_menu( 'social' ) ) : ?>
     24                if ( has_nav_menu( 'social' ) ) :
     25                ?>
    2526                    <nav class="social-navigation" role="navigation" aria-label="<?php esc_attr_e( 'Footer Social Links Menu', 'twentyseventeen' ); ?>">
    2627                        <?php
    27                             wp_nav_menu( array(
    28                                 'theme_location' => 'social',
    29                                 'menu_class'     => 'social-links-menu',
    30                                 'depth'          => 1,
    31                                 'link_before'    => '<span class="screen-reader-text">',
    32                                 'link_after'     => '</span>' . twentyseventeen_get_svg( array( 'icon' => 'chain' ) ),
    33                             ) );
     28                            wp_nav_menu(
     29                                array(
     30                                    'theme_location' => 'social',
     31                                    'menu_class'     => 'social-links-menu',
     32                                    'depth'          => 1,
     33                                    'link_before'    => '<span class="screen-reader-text">',
     34                                    'link_after'     => '</span>' . twentyseventeen_get_svg( array( 'icon' => 'chain' ) ),
     35                                )
     36                            );
    3437                        ?>
    3538                    </nav><!-- .social-navigation -->
    36                 <?php endif;
     39                <?php
     40                endif;
    3741
    3842                get_template_part( 'template-parts/footer/site', 'info' );
Note: See TracChangeset for help on using the changeset viewer.