mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-04 23:48:23 +01:00
aaf99e6913
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. Built from https://develop.svn.wordpress.org/trunk@42343 git-svn-id: http://core.svn.wordpress.org/trunk@42172 1a063a9b-81f0-0310-95a4-ce76da25c4cd
34 lines
1022 B
PHP
34 lines
1022 B
PHP
<?php
|
|
/**
|
|
* Displays top navigation
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Twenty_Seventeen
|
|
* @since 1.0
|
|
* @version 1.2
|
|
*/
|
|
|
|
?>
|
|
<nav id="site-navigation" class="main-navigation" role="navigation" aria-label="<?php esc_attr_e( 'Top Menu', 'twentyseventeen' ); ?>">
|
|
<button class="menu-toggle" aria-controls="top-menu" aria-expanded="false">
|
|
<?php
|
|
echo twentyseventeen_get_svg( array( 'icon' => 'bars' ) );
|
|
echo twentyseventeen_get_svg( array( 'icon' => 'close' ) );
|
|
_e( 'Menu', 'twentyseventeen' );
|
|
?>
|
|
</button>
|
|
|
|
<?php
|
|
wp_nav_menu(
|
|
array(
|
|
'theme_location' => 'top',
|
|
'menu_id' => 'top-menu',
|
|
)
|
|
);
|
|
?>
|
|
|
|
<?php if ( ( twentyseventeen_is_frontpage() || ( is_home() && is_front_page() ) ) && has_custom_header() ) : ?>
|
|
<a href="#content" class="menu-scroll-down"><?php echo twentyseventeen_get_svg( array( 'icon' => 'arrow-right' ) ); ?><span class="screen-reader-text"><?php _e( 'Scroll down to content', 'twentyseventeen' ); ?></span></a>
|
|
<?php endif; ?>
|
|
</nav><!-- #site-navigation -->
|