File: //home/bristolfilton.co.uk/public_html/wp-content/themes/maxbusiness/header.php
<?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 MaxBusiness
*/
?><!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(); ?>>
<div id="page" class="site">
<a class="skip-link screen-reader-text" href="#content"><?php esc_html_e( 'Skip to content', 'maxbusiness' ); ?></a>
<!-- Header Start -->
<header id="masthead" class="site-header" role="banner">
<!-- Menu -->
<nav class="navbar navbar-default cs-menu">
<div class="container-fluid">
<div class="container">
<div class="row cs-menu-head">
<div class="col-md-2 col-sm-12 navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#TF-Navbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<div class="site-branding">
<?php
if ( function_exists( 'the_custom_logo' ) && function_exists( 'has_custom_logo' ) && has_custom_logo()) :
if ( is_front_page() && is_home() ) : ?>
<h1 class="site-title navbar-brand"><?php the_custom_logo();?></h1>
<?php else : ?>
<p class="site-title navbar-brand"><?php the_custom_logo();?></a></p>
<?php
endif;
else :
if ( is_front_page() && is_home() ) : ?>
<h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
<?php else : ?>
<p class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></p>
<?php
endif;
$description = get_bloginfo( 'description', 'display' );
if ( $description || is_customize_preview() ) : ?>
<p class="site-description"><?php echo $description; ?></p>
<?php
endif;
endif;
?>
</div><!-- .site-branding -->
</div>
<?php
$args = array(
'theme_location' => 'primary',
'depth' => 0,
'container' => 'div',
'container_class' => 'collapse navbar-collapse',
'container_id' => 'TF-Navbar',
'menu_class' => 'nav navbar-nav navbar-right',
'fallback_cb' => 'maxbusiness_fallback_page_menu',
'walker' => new maxbusiness_nav_walker()
);
wp_nav_menu($args);
?>
</div>
</div>
</div>
</nav>
<!-- Menu -->
</header><!-- #masthead -->
<!-- Header End -->
<div id="content" class="site-content">