storefront/header.php

66 lines
1.9 KiB
PHP
Raw Normal View History

2014-08-17 16:55:38 +01:00
<?php
/**
* The header for our theme.
*
* Displays all of the <head> section and everything up till <div id="content">
*
* @package storefront
*/
2016-02-19 16:57:56 +00:00
2014-08-17 16:55:38 +01:00
?><!DOCTYPE html>
<html <?php language_attributes(); ?> <?php storefront_html_tag_schema(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no">
2014-08-17 16:55:38 +01:00
<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(); ?>>
<div id="page" class="hfeed site">
<?php
do_action( 'storefront_before_header' ); ?>
<header id="masthead" class="site-header" role="banner" style="<?php storefront_header_styles(); ?>">
2014-08-17 16:55:38 +01:00
<div class="col-full">
<?php
/**
2016-02-19 16:57:56 +00:00
* Functions hooked into storefront_header action
*
* @hooked storefront_skip_links - 0
* @hooked storefront_social_icons - 10
* @hooked storefront_site_branding - 20
* @hooked storefront_secondary_navigation - 30
* @hooked storefront_product_search - 40
* @hooked storefront_primary_navigation_wrapper - 42
* @hooked storefront_primary_navigation - 50
* @hooked storefront_header_cart - 60
* @hooked storefront_primary_navigation_wrapper_close - 68
2014-08-17 16:55:38 +01:00
*/
do_action( 'storefront_header' ); ?>
</div>
</header><!-- #masthead -->
<?php
/**
2016-02-19 16:57:56 +00:00
* Functions hooked in to storefront_before_content
*
2014-08-17 16:55:38 +01:00
* @hooked storefront_header_widget_region - 10
*/
do_action( 'storefront_before_content' ); ?>
2015-03-06 15:54:29 +00:00
<div id="content" class="site-content" tabindex="-1">
2014-08-29 15:43:48 +01:00
<div class="col-full">
2014-08-17 16:55:38 +01:00
<?php
/**
2016-02-19 16:57:56 +00:00
* Functions hooked in to storefront_content_top
*
2014-08-17 16:55:38 +01:00
* @hooked woocommerce_breadcrumb - 10
*/
2016-02-19 16:57:56 +00:00
do_action( 'storefront_content_top' );