-
Notifications
You must be signed in to change notification settings - Fork 18
/
header.php
62 lines (56 loc) · 1.3 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?php
/**
* The template for displaying the header.
*
* @package dokani
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
?><!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="profile" href="http://gmpg.org/xfn/11">
<?php wp_head(); ?>
</head>
<body <?php dokani_body_schema();?> <?php body_class( 'woocommerce' ); ?>>
<?php
/**
* dokani_before_header hook.
*
* @since 1.0.0
*
* @hooked dokani_do_skip_to_content_link - 2
* @hooked dokani_top_bar - 5
* @hooked dokani_add_navigation_before_header - 5
*/
do_action( 'dokani_before_header' );
/**
* dokani_header hook.
*
* @since 1.0.0
*
* @hooked dokani_construct_header - 10
*/
do_action( 'dokani_header' );
/**
* dokani_after_header hook.
*
* @since 1.0.0
*
* @hooked dokani_featured_page_header - 10
*/
do_action( 'dokani_after_header' );
?>
<div id="page" class="hfeed site grid-container container grid-parent">
<div id="content" class="site-content">
<?php
/**
* dokani_inside_container hook.
*
* @since 1.0.0
*/
do_action( 'dokani_inside_container' );