Hello. Trying to make 3 menus on WordPress, added to functions.php:
add_theme_support('menus'); register_nav_menus( array( 'top' => 'ΠΠ΅ΡΡ
Π½Π΅Π΅ ΠΌΠ΅Π½Ρ', 'bottom1' =>'ΠΠΈΠΆΠ½Π΅Π΅ ΠΌΠ΅Π½Ρ1', 'bottom2' => 'ΠΠΈΠΆΠ½Π΅Π΅ ΠΌΠ΅Π½Ρ2' ) ); I added my own items to these 3 menus. I registered menus in footer.php and header.php
Example of footer:
<nav class="nav nav--footer"> <div class="col-md-4"> <?php wp_nav_menu( array( 'menu' => 'bottom1', 'echo' => true, 'items_wrap' => '<ul class="nav__list">%3$s</ul>' ) ); ?> </div> <div class="col-md-4"> <?php wp_nav_menu( array( 'menu' => 'bottom2', 'echo' => true, 'items_wrap' => '<ul class="nav__list">%3$s</ul>' ) ); ?> </div> </nav> and on the site I have three identical menus everywhere. That is the top menu everywhere. What am I doing wrong? Tell me