This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
understrap/header.php

89 lines
2.8 KiB
PHP
Raw Normal View History

2014-12-10 11:36:38 +00:00
<?php
/**
* The header for our theme
2014-12-10 11:36:38 +00:00
*
* Displays all of the <head> section and everything up till <div id="content">
*
* @package understrap
*/
2019-06-20 08:57:12 +00:00
// Exit if accessed directly.
defined( 'ABSPATH' ) || exit;
2018-09-10 21:59:04 +00:00
2016-11-21 18:47:05 +00:00
$container = get_theme_mod( 'understrap_container_type' );
?>
<!DOCTYPE html>
2014-12-10 11:36:38 +00:00
<html <?php language_attributes(); ?>>
<head>
2016-11-21 18:47:05 +00:00
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
2016-11-21 18:47:05 +00:00
<link rel="profile" href="http://gmpg.org/xfn/11">
<?php wp_head(); ?>
2014-12-10 11:36:38 +00:00
</head>
<body <?php body_class(); ?> <?php understrap_body_attributes(); ?>>
<?php do_action( 'wp_body_open' ); ?>
<div class="site" id="page">
2016-11-21 18:47:05 +00:00
<!-- ******************* The Navbar Area ******************* -->
<div id="wrapper-navbar">
2014-12-10 11:36:38 +00:00
<a class="skip-link sr-only sr-only-focusable" href="#content"><?php esc_html_e( 'Skip to content', 'understrap' ); ?></a>
2015-08-12 15:21:46 +00:00
2020-05-08 12:40:03 +00:00
<nav id="main-nav" class="navbar fixed-top navbar-expand-md navbar-light bg-light" aria-labelledby="main-nav-label">
2019-12-13 07:26:10 +00:00
<h2 id="main-nav-label" class="sr-only">
<?php esc_html_e( 'Main Navigation', 'understrap' ); ?>
</h2>
2014-12-10 11:36:38 +00:00
2019-11-12 07:56:12 +00:00
<?php if ( 'container' === $container ) : ?>
2019-01-04 09:50:50 +00:00
<div class="container">
2017-01-19 10:29:07 +00:00
<?php endif; ?>
2017-01-06 19:30:34 +00:00
2016-11-21 18:47:05 +00:00
<!-- Your site title as branding in the menu -->
<?php if ( ! has_custom_logo() ) { ?>
<?php if ( is_front_page() && is_home() ) : ?>
<h1 class="navbar-brand mb-0"><a rel="home" href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" itemprop="url"><?php bloginfo( 'name' ); ?></a></h1>
<?php else : ?>
<a class="navbar-brand" rel="home" href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" itemprop="url"><?php bloginfo( 'name' ); ?></a>
<?php endif; ?>
<?php
} else {
2016-11-21 18:47:05 +00:00
the_custom_logo();
}
?>
<!-- end custom logo -->
2014-12-19 09:04:55 +00:00
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavDropdown" aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="<?php esc_attr_e( 'Toggle navigation', 'understrap' ); ?>">
2017-08-18 07:52:07 +00:00
<span class="navbar-toggler-icon"></span>
</button>
2016-11-21 18:47:05 +00:00
<!-- The WordPress Menu goes here -->
<?php
wp_nav_menu(
2016-11-21 18:47:05 +00:00
array(
'theme_location' => 'primary',
2017-01-06 18:51:53 +00:00
'container_class' => 'collapse navbar-collapse',
2017-01-06 19:09:14 +00:00
'container_id' => 'navbarNavDropdown',
2018-07-03 06:44:04 +00:00
'menu_class' => 'navbar-nav ml-auto',
2016-11-21 18:47:05 +00:00
'fallback_cb' => '',
'menu_id' => 'main-menu',
'depth' => 2,
'walker' => new Understrap_WP_Bootstrap_Navwalker(),
2016-11-21 18:47:05 +00:00
)
);
?>
2019-11-12 07:56:12 +00:00
<?php if ( 'container' === $container ) : ?>
2017-01-06 19:30:34 +00:00
</div><!-- .container -->
2017-01-19 10:29:07 +00:00
<?php endif; ?>
2014-12-19 09:04:55 +00:00
2016-11-21 18:47:05 +00:00
</nav><!-- .site-navigation -->
2014-12-19 09:04:55 +00:00
</div><!-- #wrapper-navbar end -->