diff options
Diffstat (limited to 'themes/twentysixteen/footer.php')
-rw-r--r-- | themes/twentysixteen/footer.php | 26 |
1 files changed, 11 insertions, 15 deletions
diff --git a/themes/twentysixteen/footer.php b/themes/twentysixteen/footer.php index 5fff3bd9..baa82092 100644 --- a/themes/twentysixteen/footer.php +++ b/themes/twentysixteen/footer.php @@ -16,12 +16,10 @@ <?php if ( has_nav_menu( 'primary' ) ) : ?> <nav class="main-navigation" role="navigation" aria-label="<?php esc_attr_e( 'Footer Primary Menu', 'twentysixteen' ); ?>"> <?php - wp_nav_menu( - array( - 'theme_location' => 'primary', - 'menu_class' => 'primary-menu', - ) - ); + wp_nav_menu( array( + 'theme_location' => 'primary', + 'menu_class' => 'primary-menu', + ) ); ?> </nav><!-- .main-navigation --> <?php endif; ?> @@ -29,15 +27,13 @@ <?php if ( has_nav_menu( 'social' ) ) : ?> <nav class="social-navigation" role="navigation" aria-label="<?php esc_attr_e( 'Footer Social Links Menu', 'twentysixteen' ); ?>"> <?php - wp_nav_menu( - array( - 'theme_location' => 'social', - 'menu_class' => 'social-links-menu', - 'depth' => 1, - 'link_before' => '<span class="screen-reader-text">', - 'link_after' => '</span>', - ) - ); + wp_nav_menu( array( + 'theme_location' => 'social', + 'menu_class' => 'social-links-menu', + 'depth' => 1, + 'link_before' => '<span class="screen-reader-text">', + 'link_after' => '</span>', + ) ); ?> </nav><!-- .social-navigation --> <?php endif; ?> |