Mobile menu code (Items in the anchor menu). At the moment, after clicking on the menu item, the scroll occurs, and the menu does not close.
<div class="header__nav-wrap"> <div class="header__nav-close"></div> <ul class="header__nav"> <?php wp_nav_menu( array( 'theme_location' => 'header_menu', 'menu' => '', 'container' => false, 'container_id' => '', 'menu_class' => 'menu', 'menu_id' => 'nav-main', 'echo' => true, 'fallback_cb' => '__return_empty_string', 'before' => '', 'after' => '', 'link_before' => '', 'link_after' => '', 'items_wrap' => '%3$s', 'depth' => 0 ) );?> <li class="header__nav-number"> <a href="tel:"></a> </li> </ul> </div>
php
not much needed here. Add ready-made markup andjs
code for the mobile menu and scroll through anchors. - zhurof