forked from the-times-independent/RedRock
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
104 lines (103 loc) · 4.11 KB
/
Copy pathheader.php
File metadata and controls
104 lines (103 loc) · 4.11 KB
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
<!DOCTYPE html>
<html class="no-js" <?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="site">
<a class="skip-link screen-reader-text" href="#content">Skip to content</a>
<header id="masthead" class="site-header" role="banner">
<div class="top-bar">
<div class="top-search-wrap">
<?php get_search_form(); ?>
</div>
</div>
<div class="col-width header-wrap">
<?php
$header_image = get_header_image();
if (!empty($header_image)) {
?>
<a
href="<?php echo esc_url(home_url('/')); ?>"
class="site-header-image-link"
title="<?php echo esc_attr(get_bloginfo('name', 'display')); ?>"
rel="home"
>
<img
src="<?php header_image(); ?>"
class="site-header-image"
width="<?php echo esc_attr(get_custom_header()->width); ?>"
height="<?php echo esc_attr(get_custom_header()->height); ?>"
alt=""
/>
</a>
<?php
}
?>
<div class="site-heading">
<div class="site-branding">
<?php
if (has_custom_logo()) {
redrock_site_logo();
}
elseif (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
}
$description = get_bloginfo('description', 'display');
if ($description || is_customize_preview()) {
?>
<p class="site-description"><?php echo $description; /* WPCS: xss ok. */ ?></p>
<?php
}
?>
</div>
</div>
</div>
<div class="col-width sub-header-wrap">
<?php
if (has_nav_menu('header')) {
?>
<nav id="site-navigation" class="main-navigation" role="navigation">
<button
class="menu-toggle"
aria-controls="header-menu"
aria-expanded="false"
data-close-text="<?php esc_attr_e('Close', 'redrock'); ?>"
>Menu</button>
<?php
wp_nav_menu(array(
'theme_location' => 'header',
'menu_id' => 'header-menu'
));
?>
</nav>
<?php
}
?>
</div>
</header>
<?php
if (advads_can_display_ads()):
$theAd = get_ad_placement('before-content');
if (!defined("HIDE-THIS-AD")):
?>
<div class="paying-wages before-content">
<?php echo $theAd; ?>
</div>
<?php
endif;
endif;
?>
<div id="content" class="site-content clear">
<div class="col-width">