-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
105 lines (93 loc) · 3.69 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<?php
/**
* The Header for our theme.
*
* Displays all of the <head> section and everything up till <div id="content">
*
* @package Edin
*/
?><!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(); ?>>
<div id="page" class="hfeed site">
<a class="skip-link screen-reader-text" href="#content"><?php _e( 'Skip to content', 'edin' ); ?></a>
<?php do_action( 'before' ); ?>
<header id="masthead" class="site-header" role="banner">
<?php if ( get_header_image() ) : ?>
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" class="header-image" rel="home">
<img src="<?php header_image(); ?>" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="<?php echo edin_get_custom_header_alt(); ?>">
</a><!-- .header-image -->
<?php endif; // End header image check. ?>
<?php
$search_header = get_theme_mod( 'edin_search_header' );
if ( 1 == $search_header ) :
?>
<div class="search-wrapper">
<?php get_search_form(); ?>
</div><!-- .search-wrapper -->
<?php endif; ?>
<div class="header-wrapper clear">
<div class="site-branding">
<?php
edin_the_site_logo();
if ( is_front_page() && is_home() ) : ?>
<h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
<?php else : ?>
<p class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></p>
<?php endif;
$description = get_bloginfo( 'description', 'display' );
if ( $description || is_customize_preview() ) : ?>
<p class="site-description"><?php echo $description; ?></p>
<?php endif;
?>
</div><!-- .site-branding -->
<?php if ( has_nav_menu( 'primary' ) || has_nav_menu( 'secondary' ) ) : ?>
<div id="site-navigation" class="header-navigation">
<button class="menu-toggle" aria-expanded="false"><?php _e( 'Menu', 'edin' ); ?></button>
<div class="navigation-wrapper clear">
<?php if ( has_nav_menu( 'secondary' ) ) : ?>
<nav class="secondary-navigation" role="navigation">
<?php
wp_nav_menu( array(
'theme_location' => 'secondary',
'container_class' => 'menu-secondary',
'menu_class' => 'clear',
'depth' => 1,
) );
?>
</nav><!-- .secondary-navigation -->
<?php endif; ?>
<?php if ( has_nav_menu( 'primary' ) ) : ?>
<nav class="primary-navigation" role="navigation">
<?php
wp_nav_menu( array(
'theme_location' => 'primary',
'container_class' => 'menu-primary',
'menu_class' => 'clear',
) );
?>
</nav><!-- .primary-navigation -->
<?php endif; ?>
</div><!-- .navigation-wrapper -->
</div><!-- #site-navigation -->
<?php endif; ?>
<?php if ( 1 == $search_header ) : ?>
<div id="site-search" class="header-search">
<button class="search-toggle" aria-expanded="false"><span class="screen-reader-text"><?php _e( 'Search', 'edin' ); ?></span></button>
</div><!-- #site-search -->
<?php endif; ?>
<?php if ( is_active_sidebar( 'sidebar-8' ) ) : ?>
<div id="site-social" class="header-search">
<?php dynamic_sidebar( 'sidebar-8' ); ?>
</div><!-- #site-social -->
<?php endif; ?>
</div><!-- .header-wrapper -->
</header><!-- #masthead -->
<div id="content" class="site-content">