| Server IP : 103.191.208.88 / Your IP : 216.73.216.44 Web Server : Microsoft-IIS/10.0 System : Windows NT COSMIC 10.0 build 20348 (Windows Server 2022) AMD64 User : IWPD_1831(willswel_) ( 0) PHP Version : 8.2.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : D:/Inetpub/vhosts/willswell.com/httpdocs/wp-content/themes/media-news/ |
Upload File : |
<?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 Media News
*/
?>
<!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 wp_body_open(); ?>
<div id="page" class="site">
<a class="skip-link screen-reader-text" href="#primary"><?php esc_html_e( 'Skip to content', 'media-news' ); ?></a>
<div id="loader" class="loader-3">
<div class="loader-container">
<div id="preloader">
</div>
</div>
</div><!-- #loader -->
<?php
$advertisement = get_theme_mod( 'media_news_header_advertisement', '' );
$advertisement_url = get_theme_mod( 'media_news_header_advertisement_url', '' );
if ( ! empty( $advertisement ) ) {
?>
<div class="header-newspromo">
<a href="<?php echo esc_url( $advertisement_url ); ?>"><img src="<?php echo esc_url( $advertisement ); ?>" alt="<?php esc_attr_e( 'Advertisment Image', 'media-news' ); ?>"></a>
</div>
<?php } ?>
<header id="masthead" class="site-header">
<?php
$header_button = get_theme_mod( 'media_news_header_custom_button_label', __( 'Subscribe', 'media-news' ) );
$header_button_url = get_theme_mod( 'media_news_header_custom_button_url', '' );
?>
<div class="media-news-topbar">
<div class="section-wrapper">
<div class="top-header-container">
<div class="top-header-left">
<div class="top-header-date">
<span><?php echo esc_html( wp_date( 'l, M j, Y' ) ); ?></span>
</div>
</div>
<div class="top-header-right">
<div class="media-news-header-search">
<div class="header-search-wrap">
<a href="#" class="search-icon"><i class="fa-solid fa-magnifying-glass" aria-hidden="true"></i></a>
<div class="header-search-form">
<?php get_search_form(); ?>
</div>
</div>
</div>
<?php if ( ! empty( $header_button ) ) { ?>
<div class="header-custom-button">
<a href="<?php echo esc_url( $header_button_url ); ?>"><?php echo esc_html( $header_button ); ?></a>
</div>
<?php } ?>
</div>
</div>
</div>
</div>
<?php $header_image = empty( get_header_image() ) ? '' : 'has-bg-image'; ?>
<div class="media-news-middle-header <?php echo esc_attr( $header_image ); ?>">
<?php if ( ! empty( get_header_image() ) ) : ?>
<div class="header-bg-image">
<img src="<?php echo esc_url( get_header_image() ); ?>" alt="<?php esc_attr_e( 'Header Image', 'media-news' ); ?>">
</div>
<?php endif; ?>
<div class="section-wrapper">
<div class="media-news-middle-header-wrapper">
<div class="middle-header-left">
<div class="header-random-post">
<?php
$args = array(
'posts_per_page' => 1,
'post_type' => 'post',
'ignore_sticky_posts' => true,
'orderby' => 'rand',
);
$random_post_query = new WP_Query( $args );
if ( $random_post_query->have_posts() ) {
while ( $random_post_query->have_posts() ) :
$random_post_query->the_post();
?>
<a href="<?php the_permalink(); ?>" class="random-post-icon" title="<?php esc_attr_e( 'Random Posts', 'media-news' ); ?>"><i class="fa-solid fa-shuffle"></i></a>
<?php
endwhile;
wp_reset_postdata();
}
?>
</div>
</div>
<div class="site-branding">
<?php if ( has_custom_logo() ) { ?>
<div class="site-logo" style="max-width: var(--logo-size-custom);">
<?php the_custom_logo(); ?>
</div>
<?php } ?>
<div class="site-identity">
<?php
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;
$media_news_description = get_bloginfo( 'description', 'display' );
if ( $media_news_description || is_customize_preview() ) :
?>
<p class="site-description"><?php echo $media_news_description; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></p>
<?php endif; ?>
</div>
</div>
<div class="middle-header-right">
<div class="header-social-icon">
<div class="header-social-icon-container">
<?php
wp_nav_menu(
array(
'container' => 'ul',
'menu_class' => 'social-links',
'theme_location' => 'social',
'link_before' => '<span class="screen-reader-text">',
'link_after' => '</span>',
)
);
?>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="media-news-navigation-outer-wrapper" style="min-height:44px";>
<div class="media-news-bottom-header">
<div class="section-wrapper">
<div class="media-news-bottom-header-wrapper">
<div class="navigation">
<nav id="site-navigation" class="main-navigation">
<button class="menu-toggle" aria-controls="primary-menu" aria-expanded="false">
<span class="ham-icon"></span>
<span class="ham-icon"></span>
<span class="ham-icon"></span>
</button>
<div class="navigation-area">
<?php
if ( has_nav_menu( 'primary' ) ) {
wp_nav_menu(
array(
'theme_location' => 'primary',
'menu_id' => 'primary-menu',
)
);
}
?>
</div>
</nav>
</div>
</div>
</div>
</div>
</div>
<!-- end of navigation -->
</header><!-- #masthead -->
<?php
if ( ! is_front_page() || is_home() ) {
if ( is_front_page() ) {
require get_template_directory() . '/sections/sections.php';
}
?>
<div class="media-news-main-wrapper">
<div class="section-wrapper">
<div class="media-news-container-wrapper">
<?php } ?>