2020-11-02 20:45:07 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Displays the site navigation.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Twenty_Twenty_One
|
2020-12-17 15:57:07 +01:00
|
|
|
* @since Twenty Twenty-One 1.0
|
2020-11-02 20:45:07 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
?>
|
|
|
|
|
|
|
|
<?php if ( has_nav_menu( 'primary' ) ) : ?>
|
2021-11-01 22:47:13 +01:00
|
|
|
<nav id="site-navigation" class="primary-navigation" aria-label="<?php esc_attr_e( 'Primary menu', 'twentytwentyone' ); ?>">
|
2020-11-02 20:45:07 +01:00
|
|
|
<div class="menu-button-container">
|
|
|
|
<button id="primary-mobile-menu" class="button" aria-controls="primary-menu-list" aria-expanded="false">
|
|
|
|
<span class="dropdown-icon open"><?php esc_html_e( 'Menu', 'twentytwentyone' ); ?>
|
|
|
|
<?php echo twenty_twenty_one_get_icon_svg( 'ui', 'menu' ); // phpcs:ignore WordPress.Security.EscapeOutput ?>
|
|
|
|
</span>
|
|
|
|
<span class="dropdown-icon close"><?php esc_html_e( 'Close', 'twentytwentyone' ); ?>
|
|
|
|
<?php echo twenty_twenty_one_get_icon_svg( 'ui', 'close' ); // phpcs:ignore WordPress.Security.EscapeOutput ?>
|
|
|
|
</span>
|
|
|
|
</button><!-- #primary-mobile-menu -->
|
|
|
|
</div><!-- .menu-button-container -->
|
|
|
|
<?php
|
|
|
|
wp_nav_menu(
|
|
|
|
array(
|
|
|
|
'theme_location' => 'primary',
|
|
|
|
'menu_class' => 'menu-wrapper',
|
|
|
|
'container_class' => 'primary-menu-container',
|
|
|
|
'items_wrap' => '<ul id="primary-menu-list" class="%2$s">%3$s</ul>',
|
2020-11-12 19:36:15 +01:00
|
|
|
'fallback_cb' => false,
|
2020-11-02 20:45:07 +01:00
|
|
|
)
|
|
|
|
);
|
|
|
|
?>
|
|
|
|
</nav><!-- #site-navigation -->
|
Bundled Themes: Remove closing PHP tag at the end of files.
To help avoid issues with trailing whitespace, omitting the closing PHP tag at the end of a file is preferred.
Props netweb, dd32, yahil, milindmore22, vishalkakadiya, NomNom99, manishsongirkar36, sabernhardt, audrasjb, desrosj.
See #40039.
Built from https://develop.svn.wordpress.org/trunk@53880
git-svn-id: http://core.svn.wordpress.org/trunk@53439 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-08-11 16:46:09 +02:00
|
|
|
<?php
|
|
|
|
endif;
|