-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
executable file
·132 lines (81 loc) · 3.43 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<?php
/**
* The Header for our theme.
* Displays all of the <head> section and everything up till <div id="content">
*/
?><!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' ); ?>">
<!--[if lt IE 9]>
<script src="<?php echo esc_url( get_template_directory_uri() ); ?>/js/html5.js"></script>
<link rel="stylesheet" href="<?php echo esc_url( get_template_directory_uri() ); ?>/css/ie.css" type="text/css">
<![endif]-->
<?php
if ( ! function_exists( '_wp_render_title_tag' ) ) :
function zerif_old_render_title() {
?>
<title><?php wp_title( '-', true, 'right' ); ?></title>
<?php
}
add_action( 'wp_head', 'zerif_old_render_title' );
endif;
wp_head(); ?>
</head>
<?php if(isset($_POST['scrollPosition'])): ?>
<body <?php body_class(); ?> onLoad="window.scrollTo(0,<?php echo intval($_POST['scrollPosition']); ?>)">
<?php else: ?>
<body <?php body_class(); ?> >
<?php endif;
global $wp_customize;
/* Preloader */
if(is_front_page() && !isset( $wp_customize ) && get_option( 'show_on_front' ) != 'page' ):
$zerif_disable_preloader = get_theme_mod('zerif_disable_preloader');
if( isset($zerif_disable_preloader) && ($zerif_disable_preloader != 1)):
echo '<div class="preloader">';
echo '<div class="status"> </div>';
echo '</div>';
endif;
endif; ?>
<div id="mobilebgfix">
<div class="mobile-bg-fix-img-wrap">
<div class="mobile-bg-fix-img"></div>
</div>
<div class="mobile-bg-fix-whole-site">
<header id="home" class="header">
<div id="main-nav" class="navbar navbar-inverse bs-docs-nav" role="banner">
<div class="container">
<div class="navbar-header responsive-logo">
<button class="navbar-toggle collapsed" type="button" data-toggle="collapse" data-target=".bs-navbar-collapse">
<span class="sr-only"><?php _e('Toggle navigation','zerif-lite'); ?></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<?php
$zerif_logo = get_theme_mod('zerif_logo');
if(isset($zerif_logo) && $zerif_logo != ""):
echo '<a href="'.esc_url( home_url( '/' ) ).'" class="navbar-brand">';
echo '<img src="'.esc_url( $zerif_logo ).'" alt="'.esc_attr( get_bloginfo('title') ).'">';
echo '</a>';
else:
echo '<a href="'.esc_url( home_url( '/' ) ).'" class="navbar-brand">';
if( file_exists(get_stylesheet_directory()."/images/logo.png")):
echo '<img src="'.get_stylesheet_directory_uri().'/images/logo.png" alt="'.esc_attr( get_bloginfo('title') ).'">';
else:
echo '<img src="'.get_template_directory_uri().'/images/logo.png" alt="'.esc_attr( get_bloginfo('title') ).'">';
endif;
echo '</a>';
endif;
?>
</div>
<nav class="navbar-collapse bs-navbar-collapse collapse" role="navigation" id="site-navigation">
<a class="screen-reader-text skip-link" href="#content"><?php _e( 'Skip to content', 'zerif-lite' ); ?></a>
<?php wp_nav_menu( array('theme_location' => 'primary', 'container' => false, 'menu_class' => 'nav navbar-nav navbar-right responsive-nav main-nav-list', 'fallback_cb' => 'zerif_wp_page_menu')); ?>
</nav>
</div>
</div>
<!-- / END TOP BAR -->