This repository was archived by the owner on Sep 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathheader.php
More file actions
55 lines (38 loc) · 1.32 KB
/
header.php
File metadata and controls
55 lines (38 loc) · 1.32 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
<?php
/**
* The Header for our theme.
*
* Displays all of the <head> section and everything up till <div id="content">
*
* @package Some_Like_It_Neat
* @author Alex Vasquez <alex@digisavvy.com>
* @license GPL-2.0+ https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html
* @link https://github.com/digisavvy/some-like-it-neat
*/
?>
<!DOCTYPE html>
<?php tha_html_before(); ?>
<html <?php language_attributes(); ?>>
<head>
<?php tha_head_top(); ?>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<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' ); ?>">
<style type="text/css">
<?php if ( 'no' === get_theme_mod( 'some-like-it-neat_post_format_support' ) ) : ?>
h1.entry-title:before {
display: none;
}
<?php endif; ?>
</style>
<?php tha_head_bottom(); ?>
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<?php tha_body_top(); ?>
<div id="page" class="hfeed site">
<a class="skip-link screen-reader-text" href="#content"><?php esc_html_e( 'Skip to content', 'some-like-it-neat' ); ?></a>
<?php do_action( 'some_like_it_neat_header' ); ?>
<?php do_action( 'some_like_it_neat_before_content' ); ?>