-
Notifications
You must be signed in to change notification settings - Fork 23
/
header.php
33 lines (29 loc) · 846 Bytes
/
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
<?php
/**
* Site Header
*
* @package BEStarter
* @author Bill Erickson
* @since 1.0.0
* @license GPL-2.0+
**/
echo '<!DOCTYPE html>';
tha_html_before();
echo '<html ' . get_language_attributes( 'html' ) . '>';
echo '<head>';
tha_head_top();
wp_head();
tha_head_bottom();
echo '</head>';
echo '<body class="' . esc_attr( join( ' ', get_body_class() ) ) . '" id="top">';
wp_body_open();
tha_body_top();
echo '<div class="site-container">';
echo '<a class="skip-link screen-reader-text" href="#main-content">' . esc_html__( 'Skip to content', 'bestarter_textdomain' ) . '</a>';
tha_header_before();
echo '<header class="site-header" role="banner"><div class="wrap">';
tha_header_top();
tha_header_bottom();
echo '</div></header>';
tha_header_after();
echo '<div class="site-inner" id="main-content">';