-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathheader.php
37 lines (32 loc) · 904 Bytes
/
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
<!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">
<?php if ( is_singular() && pings_open( get_queried_object() ) ) : ?>
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
<?php endif; ?>
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<?php wp_body_open(); ?>
<?php
/**
* Preloader Start
*
* @Hook creativeagency_preloader
*
* @Hooked creativeagency_site_preloader 10
*
*/
do_action( 'creativeagency_preloader' );
/**
* Header Area Start
* Header menu
*
* @Hook creativeagency_header
*
* @Hooked creativeagency_header_cb 10
*/
do_action( 'creativeagency_header' );