-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathheader.php
executable file
·48 lines (47 loc) · 1.44 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
<?php
/**
* The header for our theme.
* Displays all of the <head> section.
*
* @author Mahdi Yazdani
* @package Hypermarket
* @since 1.0.4.2
*/
?><!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo('charset'); ?>" />
<!--Mobile Specific Meta Tag-->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-title" content="<?php bloginfo('name'); ?> - <?php bloginfo('description'); ?>" />
<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(); ?>>
<?php
/**
* Functions hooked into "hypermarket_before_header_area" action
*
* @hooked hypermarket_skip_links - 0
* @since 1.0.4.2
*/
do_action('hypermarket_before_header_area');
?>
<!-- Page Wrapper -->
<div class="page-wrapper">
<?php
/**
* Functions hooked into "hypermarket_header_area" action
*
* @hooked hypermarket_header_wrapper_start - 2
* @hooked hypermarket_site_brand - 5
* @hooked hypermarket_primary_navigation - 10
* @hooked hypermarket_header_toolbar - 10
* @hooked hypermarket_header_wrapper_end - 12
* @since 1.0
*/
do_action('hypermarket_header_area');
do_action('hypermarket_after_header_area');