-
Notifications
You must be signed in to change notification settings - Fork 4
/
menu.php
37 lines (37 loc) · 1.55 KB
/
menu.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php
/*
================================================================================================
The template for displaying the menu. It contains the menu items
================================================================================================
@package Maria
@link https://codex.wordpress.org/The_Loop
@copyright Copyright (C) 2017. Samuel Guebo
@license GNU General Public License v2 or later (http://www.gnu.org/licenses/gpl-2.0.html)
@author Samuel Guebo (http://samuelguebo.co/)
================================================================================================
*/
?>
<nav class="top-bar " data-topbar >
<ul class="title-area">
<li class="name">
</li>
<li class="toggle-topbar menu-icon"><a href="#"><span></span></a></li>
</ul>
<section class="top-bar-section">
<?php
/* Primary menu */
if(function_exists('wp_nav_menu')) {
wp_nav_menu(array(
'theme_location' => 'primary',
'container' => '',
'container_class' => '',
'container_id' => '',
'menu_id' => 'main-menu',
'menu_class' => 'main-nav',
'fallback_cb' => '',
'walker' => new Multilevel_Menu()
));
}
?>
</section><!--/top-bar-section-->
</nav><!--/top-bar-->