-
Notifications
You must be signed in to change notification settings - Fork 2
/
header.php
69 lines (53 loc) · 1.48 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
63
64
65
66
67
68
69
<?php
/**
* This file is a part of the Radium Framework core.
* Please be cautious editing this file,
*
* @category Analytica
* @package Energia
* @author Franklin Gitonga
* @link http://radiumthemes.com/
*/
if ( ! analytica_is_php_version_compatible() ) {
return;
}
/**
* The Header for our theme.
*
* Displays all of the <head> section and everything up until <div class="site-inner">
*
* @since 1.0.0
*/
do_action( 'analytica_doctype' );
do_action( 'analytica_meta' );
do_action( 'analytica_title' );
wp_head(); // we need this for plugins
?></head><?php
analytica_markup( array(
'element' => '<body %s>',
'context' => 'body',
) );
do_action( 'analytica_before' );
analytica_markup( array(
'element' => '<div %s>',
'context' => 'site-container',
) );
do_action( 'analytica_body_top' );
analytica_markup( array(
'element' => '<div %s>',
'context' => 'site',
) );
do_action( 'analytica_header_before' );
do_action( 'analytica_header' );
do_action( 'analytica_header_after' );
do_action( 'analytica_content_before' );
analytica_markup( array(
'element' => '<div %s>',
'context' => 'site-content',
) );
do_action( 'analytica_content_top' );
analytica_markup( array(
'element' => '<div %s>',
'context' => 'site-inner',
) );
analytica_structural_wrap( 'site-inner', 'open' );