-
Notifications
You must be signed in to change notification settings - Fork 16
/
header.php
executable file
·30 lines (30 loc) · 1013 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
28
29
30
<!--
***
* WPDEVELOPERTHEME
***
-->
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
<link rel="shortcut icon" href="<?php bloginfo('template_url')?>/img/favicon.ico" />
<title><?php wp_title(); ?></title>
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<?php wp_body_open(); ?>
<header>
<!-- Menu Primary with Bootstrap -->
<nav class="collapse navbar-collapse bs-navbar-collapse">
<?php wp_nav_menu( array(
'theme_location' => 'primary',
'menu_id' => 'primary-menu',
'menu_class' => 'nav navbar-nav',//or fluid: .nav-justified
'container' => false,
'items_wrap' => '<ul id="%1$s" class="%2$s nav">%3$s</ul>'
) );
?>
</nav>
</header>