-
Notifications
You must be signed in to change notification settings - Fork 0
/
nav-top.php
35 lines (35 loc) · 1.17 KB
/
nav-top.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
<div class="lunar-row">
<div class="nav-container">
<button
class="menu-toggle js-open-menu js-close-menu"
aria-expanded="false"
aria-controls="mobile-menu"
>
<svg
width="24"
height="24"
fill="currentColor"
viewBox="0 0 20 20"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
d="M3 5a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM3 10a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM3 15a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1z"
clip-rule="evenodd"
></path>
</svg>
</button>
<div class="page-nav-wrapper">
<?php
wp_nav_menu(
array(
'theme_location' => 'primary-menu',
'depth' => 3,
'container' => 'nav',
'menu_class' => 'page-nav',
'fallback_cb' => 'wp_page_menu',
)
); ?>
</div>
</div>
</div>