-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
63 lines (51 loc) · 2.12 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
63
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo('charset'); ?>">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<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(); ?>>
<div class="container">
<div id="page" class="site">
<header id="masthead" class="site-header">
<div class="site-branding clearfix">
<div class="site-branding-logo <?php if (get_theme_mod( 'header_title' )){?>only-logo<?php }?>">
<?php the_custom_logo();?>
<?php if ( !get_theme_mod( 'header_title' )):?>
<h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
<?php endif;?>
<?php
$description = get_bloginfo( 'description', 'display' );
if ( $description || is_customize_preview() ) : ?>
<p class="site-description"><?php echo $description; /* WPCS: xss ok. */ ?></p>
<?php endif; ?>
</div>
<button class="menu-toggle navbar-toggle" data-toggle="collapse" data-target="#main-navigation-collapse"><i class="fa fa-bars"></i></button>
<div id="main-navigation-collapse" class="collapse navbar-collapse">
<?php
if (has_nav_menu('menu-1')) {
wp_nav_menu( array(
'theme_location' => 'menu-1',
'container' => 'nav',
'menu_class' => 'nav navbar-nav responsive-nav hidden-md hidden-lg',
) );
}
?>
</div>
</div><!-- .site-branding -->
</header><!-- #masthead -->
<div id="site-navigation" class="main-navigation clearfix">
<?php
if (has_nav_menu('menu-1')) {
wp_nav_menu( array(
'theme_location' => 'menu-1',
'container' => 'nav',
'menu_class' => 'menu hidden-sm hidden-xs',
) );
}
?>
</div><!-- #site-navigation -->