-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathheader.php
More file actions
52 lines (44 loc) · 1.07 KB
/
header.php
File metadata and controls
52 lines (44 loc) · 1.07 KB
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
<?php
/**
* The header for our theme
*
* This is the template that displays all of the <head> section and everything up until <div id="content">
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package Cream_Magazine
*/
/**
* Hook - cream_magazine_doctype.
*
* @hooked cream_magazine_doctype_action - 10
*/
do_action( 'cream_magazine_doctype' );
/**
* Hook - cream_magazine_head.
*
* @hooked cream_magazine_head_action - 10
*/
do_action( 'cream_magazine_head' );
/**
* Hook - cream_magazine_body_before.
*
* @hooked cream_magazine_body_before_action - 10
*/
do_action( 'cream_magazine_body_before' );
/**
* Hook - cream_magazine_page_wrapper_start.
*
* @hooked cream_magazine_page_wrapper_start_action - 10
*/
do_action( 'cream_magazine_page_wrapper_start' );
/**
* Hook - cream_magazine_header_section.
*
* @hooked cream_magazine_header_section_action - 10
*/
do_action( 'cream_magazine_header_section' );
?>
<div id="content" class="site-content">
<?php
get_template_part( 'template-parts/news-ticker' );