-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
91 lines (81 loc) · 2.29 KB
/
Copy pathheader.php
File metadata and controls
91 lines (81 loc) · 2.29 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?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
*
* @since 1.0.0
* @package AskBugPro
*/
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
?>
<!doctype html>
<html <?php language_attributes(); ?>>
<head>
<?php
/**
* Functions hooked into askbugpro_do_head action.
*
* @hooked askbugpro_header_meta_tags - 10
*/
do_action( 'askbugpro_do_head' );
wp_head();
?>
</head>
<body <?php body_class(); ?>>
<?php
wp_body_open();
/**
* Hook: askbugpro_do_body_open.
*/
do_action( 'askbugpro_do_body_open' );
/**
* Functions hooked into askbugpro_do_before action.
*
* @hooked askbugpro_page_starts - 10
* @hooked askbugpro_skip_content_link - 15
*/
do_action( 'askbugpro_do_before' );
/**
* Functions hooked into askbugpro_do_before_header action.
*
* @hooked askbugpro_header_starts - 10
* @hooked askbugpro_header_container_area_starts - 15
*/
do_action( 'askbugpro_do_before_header' );
/**
* Functions hooked into askbugpro_do_header action.
*
* @hooked askbugpro_header_site_branding_navigation_wrapper_starts - 10
* @hooked askbugpro_site_branding - 15
* @hooked askbugpro_site_navigation_actions_wrapper_starts - 20
* @hooked askbugpro_site_navigation - 25
* @hooked askbugpro_site_navigation_actions_wrapper_ends - 30
* @hooked askbugpro_header_site_branding_navigation_wrapper_ends - 35
* @hooked askbugpro_header_actions_wrapper_starts - 40
* @hooked askbugpro_header_search_form_icon - 45
* @hooked askbugpro_header_ask_page_cta - 50
* @hooked askbugpro_header_user_login_register_profile_link - 55
* @hooked askbugpro_header_actions_wrapper_ends - 60
*/
do_action( 'askbugpro_do_header' );
/**
* Functions hooked into askbugpro_do_after_header action.
*
* @hooked askbugpro_header_container_area_ends - 10
* @hooked askbugpro_header_ends - 15
* @hooked askbugpro_extra_contents_after_header - 20
*/
do_action( 'askbugpro_do_after_header' );
/**
* Functions hooked into askbugpro_do_before_content_starts action.
*
* @hooked askbugpro_content_wrapper_starts - 10
* @hooked askbugpro_before_content_page_header - 15
*/
do_action( 'askbugpro_do_before_content_starts' );