<?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>',
'fallback_cb' => false,
) );
?>
</nav><!-- #site-navigation -->
<?php