diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2019-01-01 22:28:29 -0500 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2019-01-01 22:28:29 -0500 |
commit | 803ee77b72af622394ef14eff997102c57b0ddf8 (patch) | |
tree | b7195d772cc97b221a152e28089885c9a5405eae /themes/twentyfifteen/sidebar.php | |
parent | Update akismet 4.1 (diff) | |
download | blogs-gentoo-803ee77b72af622394ef14eff997102c57b0ddf8.tar.gz blogs-gentoo-803ee77b72af622394ef14eff997102c57b0ddf8.tar.bz2 blogs-gentoo-803ee77b72af622394ef14eff997102c57b0ddf8.zip |
Update twentyfifteen 2.2
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'themes/twentyfifteen/sidebar.php')
-rw-r--r-- | themes/twentyfifteen/sidebar.php | 26 |
1 files changed, 11 insertions, 15 deletions
diff --git a/themes/twentyfifteen/sidebar.php b/themes/twentyfifteen/sidebar.php index f2326a8c..02308efc 100644 --- a/themes/twentyfifteen/sidebar.php +++ b/themes/twentyfifteen/sidebar.php @@ -7,19 +7,17 @@ * @since Twenty Fifteen 1.0 */ -if ( has_nav_menu( 'primary' ) || has_nav_menu( 'social' ) || is_active_sidebar( 'sidebar-1' ) ) : ?> +if ( has_nav_menu( 'primary' ) || has_nav_menu( 'social' ) || is_active_sidebar( 'sidebar-1' ) ) : ?> <div id="secondary" class="secondary"> <?php if ( has_nav_menu( 'primary' ) ) : ?> <nav id="site-navigation" class="main-navigation" role="navigation"> <?php // Primary navigation menu. - wp_nav_menu( - array( - 'menu_class' => 'nav-menu', - 'theme_location' => 'primary', - ) - ); + wp_nav_menu( array( + 'menu_class' => 'nav-menu', + 'theme_location' => 'primary', + ) ); ?> </nav><!-- .main-navigation --> <?php endif; ?> @@ -28,14 +26,12 @@ if ( has_nav_menu( 'primary' ) || has_nav_menu( 'social' ) || is_active_sidebar( <nav id="social-navigation" class="social-navigation" role="navigation"> <?php // Social links navigation menu. - wp_nav_menu( - array( - 'theme_location' => 'social', - 'depth' => 1, - 'link_before' => '<span class="screen-reader-text">', - 'link_after' => '</span>', - ) - ); + wp_nav_menu( array( + 'theme_location' => 'social', + 'depth' => 1, + 'link_before' => '<span class="screen-reader-text">', + 'link_after' => '</span>', + ) ); ?> </nav><!-- .social-navigation --> <?php endif; ?> |