-
Notifications
You must be signed in to change notification settings - Fork 1
/
header.php
executable file
·61 lines (53 loc) · 1.51 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
<?php
/**
* The header for our theme.
*
* Displays all of the <head> section and everything up till <div id="content">
*
* @package eighteen-tags
*/
?><!DOCTYPE html>
<html <?php language_attributes(); ?> <?php eighteen_tags_html_tag_schema(); ?>>
<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(); ?>>
<?php
wp_body_open();
if ( get_theme_mod( 'eighteen_tags_boxed_layout' ) ) {
echo '<div class="col-full">';
}
?>
<div id="page" class="hfeed site">
<?php
do_action( 'eighteen_tags_before_header' ); ?>
<header id="masthead" class="site-header" role="banner">
<div class="col-full">
<?php
/**
* @hooked eighteen_tags_skip_links - 0
* @hooked eighteen_tags_hamburger_menu - 5
* @hooked eighteen_tags_social_icons - 10
* @hooked eighteen_tags_site_branding - 20
* @hooked eighteen_tags_product_search - 40
* @hooked eighteen_tags_primary_navigation - 50
*/
do_action( 'eighteen_tags_header' ); ?>
</div>
</header><!-- #masthead -->
<?php
/**
* @hooked eighteen_tags_header_widget_region - 10
*/
do_action( 'eighteen_tags_before_content' ); ?>
<div id="content" class="site-content" tabindex="-1">
<div class="col-full">
<?php
/**
* @hooked woocommerce_breadcrumb - 10
*/
do_action( 'eighteen_tags_content_top' ); ?>