-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.php
29 lines (29 loc) · 1.03 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
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href='<?php echo home_url(); ?>'><?php bloginfo('name'); ?></a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div id="navbar" class="collapse navbar-collapse">
<?php
$args = array(
'theme_location' => 'primary',
'menu_class' => 'nav navbar-nav'
);
?>
<?php wp_nav_menu($args); ?>
<?php if (is_active_sidebar('widgetareasearch')) { ?>
<div class="navbar-right">
<?php dynamic_sidebar('widgetareasearch'); ?>
</div>
<?php } ?>
</div>
</div>
</nav>