-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
33 lines (29 loc) · 788 Bytes
/
header.php
File metadata and controls
33 lines (29 loc) · 788 Bytes
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
/**
* Header Template
*
* Here we setup all logic and HTML that is required for the header section of all screens.
*
* @subpackage Template
*/
?><!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php echo esc_attr( get_bloginfo( 'charset' ) ); ?>" />
<title><?php sf_title(); ?></title>
<?php sf_meta(); ?>
<?php if ( is_singular() && pings_open( get_queried_object() ) ) : ?>
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
<?php endif; ?>
<?php wp_head(); ?>
<?php sf_head(); ?>
</head>
<body <?php body_class(); ?>>
<?php sf_top(); ?>
<div id="wrapper">
<div id="inner-wrapper">
<?php sf_header_before(); ?>
<header id="header" class="col-full">
<?php sf_header_inside(); ?>
</header>
<?php sf_header_after(); ?>