-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
32 lines (27 loc) · 974 Bytes
/
header.php
File metadata and controls
32 lines (27 loc) · 974 Bytes
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
<?php defined('ABSPATH') || exit; ?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><?php wp_title('') ?></title>
<!-- <title>
<?php
// bloginfo('name');
// wp_title(); // it is use to get page title
?>
</title> -->
<!-- <meta name="description" content="<?php // bloginfo('description') ?>"> -->
<meta name="description" content="<? esc_attr(get_the_excerpt()); ?>">
<?php wp_head(); ?>
</head>
<body <?= body_class() ?>>
<?php wp_body_open(); ?>
<header>
<!-- Desktop Header Start -->
<?php get_template_part('template-parts/header'); ?>
<!-- Desktop Header End -->
<!-- Mobile Header Start -->
<?php get_template_part('template-parts/header', 'mobile'); ?>
<!-- Mobile Header End -->
</header>