-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
55 lines (44 loc) · 1.04 KB
/
Copy pathheader.php
File metadata and controls
55 lines (44 loc) · 1.04 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
<?php
/**
* The template for displaying the header
*
* Displays all of the <head> element and everything up until the page header div
* and the content wrapper start
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package Ditso_Catix
*/
if (!defined('ABSPATH')) {
exit; // Exit if accessed directly.
}
?>
<!DOCTYPE html>
<?php fxm_html_before(); ?>
<html <?php language_attributes(); ?>>
<head>
<?php fxm_head_top(); ?>
<meta charset="<?php bloginfo('charset'); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="https://gmpg.org/xfn/11">
<?php wp_head(); ?>
<?php fxm_head_bottom(); ?>
</head>
<body <?php body_class(); ?>>
<?php fxm_body_top(); ?>
<?php wp_body_open(); ?>
<?php fxm_header_before(); ?>
<?php
/**
* Theme Action Hook
* @see 'partials/blocks/header.php'
*/
fxm_site_header();
?>
<?php fxm_header_after(); ?>
<?php
/**
* @see 'inc/core'template-parts.php'
*/
fxm_content_before();
?>