-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
27 lines (26 loc) · 875 Bytes
/
header.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
<header>
<div class="phi-container">
<a class="phi-Logo" href="/"><span>🍚</span> <span>Jumpstart</span> <small>(<?php printf( esc_html__( 'Powered by %s', 'js' ), 'Bento--grunt' ) ?>)</small></a>
<?php
$args = array(
'theme_location' => 'main-menu',
'menu' => '',
'container' => 'nav',
'container_class'=>'a1n-main-menu-container',
'container_id' => '',
'menu_class' => 'menu',
'menu_id' => '',
'echo' => true,
'fallback_cb' => 'wp_page_menu',
'before' => '',
'after' => '',
'link_before' => '',
'link_after' => '',
'items_wrap' => '<div id = "%1$s" class = "phi-MainNav">%3$s</div>',
'depth' => 0,
'walker' => new Phil_Nav_Walker
);
wp_nav_menu( $args );
?>
</div>
</header>