HEX
Server: Apache
System: Linux 162-240-236-42.bluehost.com 3.10.0-1160.114.2.el7.x86_64 #1 SMP Wed Mar 20 15:54:52 UTC 2024 x86_64
User: bt667 (1004)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /home/bt667/www/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();