File: /home/bt667/public_html/wp-content/themes/news-event/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 News Event
*/
use NewsEvent\CustomizerDefault as NEV;
?>
<!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="https://gmpg.org/xfn/11">
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?> <?php news_event_schema_body_attributes(); ?>>
<?php wp_body_open(); ?>
<div id="page" class="site">
<a class="skip-link screen-reader-text" href="#primary"><?php esc_html_e( 'Skip to content', 'news-event' ); ?></a>
<div class="news_event_ovelay_div"></div>
<?php
/**
* hook - news_event_page_prepend_hook
*
* @package News Event
* @since 1.0.0
*/
do_action( "news_event_page_prepend_hook" );
$headerClass = 'site-header layout--default layout--two';
?>
<header id="masthead" class="<?php echo esc_attr( $headerClass ); ?>">
<?php
/**
* Function - news_event_top_header_html
*
* @since 1.0.0
*
*/
news_event_top_header_html();
/**
* Function - news_event_header_html
*
* @since 1.0.0
*
*/
news_event_header_html();
?>
</header><!-- #masthead -->
<?php
if( is_single() ) news_event_breadcrumb_html();
/**
* function - news_event_after_header_html
*
* @since 1.0.0
*/
news_event_after_header_html();