-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
67 lines (57 loc) · 1.92 KB
/
header.php
File metadata and controls
67 lines (57 loc) · 1.92 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
56
57
58
59
60
61
62
63
64
65
66
67
<?php
/**
* The header for our theme
*
* This is the template that displays all of the <head> section and everything up until <div id="content">
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package shivampaw
*/
?><!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="http://gmpg.org/xfn/11">
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<!-- Header Navbar
=================================================== -->
<header class="site-header">
<nav class="navbar navbar-toggleable-sm navbar-light">
<button type="button" class="navbar-toggler navbar-toggler-right" data-toggle="collapse" data-target="#nav-content" aria-expanded="false">
<span class="navbar-toggler-icon"></span>
</button>
<?php
if ( has_custom_logo() ) :
the_custom_logo();
else: ?>
<a class="navbar-brand" href="<?php echo home_url(); ?>">
<?php echo bloginfo('name'); ?>
</a>
<?php
endif; ?>
<?php
wp_nav_menu(array(
'theme_location' => 'primary',
'container_class' => 'navbar-collapse collapse',
'container_id' => 'nav-content',
'menu_class' => 'navbar-nav mr-auto mr-sm-0 ml-sm-auto',
'fallback_cb' => 'wp_bootstrap_navwalker::fallback',
'walker' => new wp_bootstrap_navwalker(),
));
?>
</nav>
</header>
<?php if ( get_header_image() ) : ?>
<div class="header-image">
<div class="header-image-text">
<p class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php bloginfo( 'name' ); ?></a></p>
<p class="site-description"><?php bloginfo( 'description' ); ?></p>
</div>
</div>
<?php endif; ?>
<div id="page" class="container">
<div class="row">