-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
35 lines (35 loc) · 1.14 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
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<div class="wrap">
<header class="header" role="banner">
<?php if( has_nav_menu( 'head' ) ){ ?>
<div class="g_nav_wrap">
<button class="g_navi_button" type="button"><?php _e( 'Menu', 'moca' ); ?><i class="fa fa-bars" aria-hidden="true"></i></button>
<nav class="g_navi" role="navigation">
<?php wp_nav_menu(
array(
'theme_location' => 'head',
'container' => false,
'items_wrap' => '<ul>%3$s</ul>'
)
); ?>
</nav>
</div><!-- /.gnav_wrap -->
<?php } ?>
<?php
$title_tag = 'h1';
if( is_single() ){
$title_tag = 'div';
}
?>
<<?php echo $title_tag; ?> class="site_title"><a href="<?php echo esc_url( home_url() ); ?>"><?php bloginfo( 'name' ); ?></a></<?php echo $title_tag; ?>>
<p class="site_description"><?php bloginfo('description'); ?></p>
</header><!-- /.header -->
</div><!-- /.wrap -->