-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
62 lines (51 loc) · 2.09 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?php
/**
* Header template file
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package ccwp
*/
// Security check
if (!defined('ABSPATH')) exit;
?>
<!DOCTYPE html>
<html <?php language_attributes() ?>>
<head>
<meta charset="<?php bloginfo('charset') ?>" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="profile" href="http://gmpg.org/xfn/11" />
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
<?php wp_head() ?>
</head>
<body <?php body_class() ?>>
<!-- Header -->
<header>
<nav class="navbar navbar-toggleable-md navbar-light bg-faded">
<div class="container-fluid">
<!-- Navbar toggle -->
<button class="navbar-toggler navbar-toggler-left" type="button">
<span class="navbar-toggler-icon"></span>
</button>
<!-- Brand -->
<a class="navbar-brand" href="<?php bloginfo('url') ?>"><?php function_exists('has_custom_logo') && has_custom_logo() ? the_custom_logo() : bloginfo(); ?></a>
<!-- Main menu -->
<?php
if (has_nav_menu('primary')):
$args = array(
'theme_location' => 'primary',
'menu' => 'primary',
'container' => 'ul',
'menu_class' => 'navbar-nav navbar-nav-left',
'echo' => true,
'fallback_cb' => 'wp_page_menu',
'items_wrap' => '<ul id="%1$s" class="%2$s">%3$s</ul>',
'depth' => 0,
);
wp_nav_menu($args);
endif;
?>
</div>
</nav>
</header>
<div class="container-fluid">