forked from wpdesignx/rebase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
60 lines (53 loc) · 1.19 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
<?php
/**
* The header for our theme
*
* This is the template that displays all of the <head> section and everything up until <div id="content">
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package Base
*/
namespace Base;
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
?>
<!doctype html>
<html <?php language_attributes(); ?> class="no-js" <?php webapp()->print_microdata( 'html' ); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1">
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<?php wp_body_open(); ?>
<?php
/**
* Base before wrapper hook.
*/
do_action( 'base_before_wrapper' );
?>
<div id="wrapper" class="site wp-site-blocks">
<?php
/**
* Base before header hook.
*
* @hooked base_do_skip_to_content_link - 2
*/
do_action( 'base_before_header' );
/**
* Base header hook.
*
* @hooked Base\header_markup - 10
*/
do_action( 'base_header' );
do_action( 'base_after_header' );
?>
<div id="inner-wrap" class="wrap hfeed bst-clear">
<?php
/**
* Hook for top of inner wrap.
*/
do_action( 'base_before_content' );
?>