-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
39 lines (36 loc) · 1.04 KB
/
Copy pathheader.php
File metadata and controls
39 lines (36 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
<?php
/**
* The header for our theme
*
* This is the template that displays all of the <head> section.
*
* @package WordPress
* @subpackage gallery
* @since 1.0
* @version 1.0
*/
?><!doctype html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, viewport-fit=cover">
<link rel="profile" href="http://gmpg.org/xfn/11">
<?php
/**
* Always have wp_head() just before the closing </head>
* tag of your theme, or you will break many plugins, which
* generally use this hook to add elements to <head> such
* as styles, scripts, and meta tags.
*/
wp_head();
?>
</head>
<body <?php body_class(); ?>>
<?php wp_body_open(); ?>
<!-- Start Wrapper -->
<div id="wrapper">
<?php do_action( 'thb_before_header' ); ?>
<?php get_template_part( 'inc/templates/header/subheader-style1' ); ?>
<?php get_template_part( 'inc/templates/header/header-style1' ); ?>
<?php do_action( 'thb_before_main' ); ?>
<div role="main">