forked from Rundiz-WP/bootstrap-basic4
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
38 lines (34 loc) · 1.21 KB
/
header.php
File metadata and controls
38 lines (34 loc) · 1.21 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
<?php
/**
* The theme header.
*
* @package bootstrap-basic4
*/
$container_class = apply_filters('bootstrap_basic4_container_class', 'container');
if (!is_scalar($container_class) || empty($container_class)) {
$container_class = 'container';
}
?>
<!DOCTYPE html>
<html class="no-js" <?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, shrink-to-fit=no">
<link rel="profile" href="http://gmpg.org/xfn/11" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<!--WordPress head-->
<?php wp_head(); ?>
<!--end WordPress head-->
</head>
<body <?php body_class(); ?>>
<?php
if (function_exists('wp_body_open')) {
wp_body_open();
}
?>
<div class="<?php echo $container_class; ?> page-container">
<header class="page-header page-header-sitebrand-topbar">
<?php include 'navwalker-menu.php';?>
</header><!--.page-header-->
<div id="content" class="site-content row row-with-vspace">