Skip to content

Instantly share code, notes, and snippets.

@Lysindr
Created September 20, 2016 21:10
Show Gist options
  • Save Lysindr/cd3a0c0816bfdf435936ce99c97fbd91 to your computer and use it in GitHub Desktop.
Save Lysindr/cd3a0c0816bfdf435936ce99c97fbd91 to your computer and use it in GitHub Desktop.
Custom Menu in WordPress
<nav class="main-menu">
<a href="#" class="menu-trigger">Menu</a>
<?php
wp_nav_menu( array(
'menu_class'=>'main-menu-list', //Класс, который будет навешан на ul
'container_class'=>'', //убераем класс контейнера, тк у нас уже есть <nav class="main-menu"></nav>
'theme_location'=>'top',
'after'=>'',
'container'=>'' // убераем контейнер для меню
) );
?>
</nav>
//Регистрируем меню в файле functions.php , что бы стало доступно из админки
register_nav_menus(array(
'top' => 'Верхнее меню', //Название месторасположения меню в шаблоне
'bottom' => 'Нижнее меню' //Название другого месторасположения меню в шаблоне
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment