File: /home/muoapartman/www/wp-content/themes/hotel-vivanta/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 Hotel_Vivanta
*/
$hotel_vivanta_options = hotel_vivanta_theme_options();
$facebook = $hotel_vivanta_options['facebook'];
$twitter = $hotel_vivanta_options['twitter'];
$instagram = $hotel_vivanta_options['instagram'];
$header_phone = $hotel_vivanta_options['header_phone'];
?>
<!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', 'hotel-vivanta' ); ?></a>
<div class="main-wrap">
<header id="masthead" class="site-header">
<div class="container">
<div class="row">
<div class="site-branding">
<?php
the_custom_logo(); ?>
<div class="logo-wrap">
<?php
if ( is_front_page() && is_home() ) :
?>
<h2 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h2>
<?php
else :
?>
<h2 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h2>
<?php
endif;
$hotel_vivanta_description = get_bloginfo( 'description', 'display' );
if ( $hotel_vivanta_description || is_customize_preview() ) :
?>
<p class="site-description"><?php echo $hotel_vivanta_description; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></p>
<?php endif; ?>
</div>
</div><!-- .site-branding -->
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="navbar-collapse">
<?php
if (has_nav_menu('primary')) { ?>
<?php
wp_nav_menu(array(
'theme_location' => 'primary',
'container' => '',
'menu_class' => 'nav navbar-nav navbar-center',
'menu_id' => 'menu-main',
'walker' => new hotel_vivanta_nav_walker(),
'fallback_cb' => 'hotel_vivanta_nav_walker::fallback',
));
?>
<?php } else { ?>
<nav id="site-navigation" class="main-navigation clearfix">
<?php wp_page_menu(array('menu_class' => 'menu','menu_id' => 'menuid')); ?>
</nav>
<?php } ?>
</div><!-- End navbar-collapse -->
<div class="search-wrap">
<div class="header-social">
<?php if($header_phone)
echo '<div class="header-phone"><a href="tel:'.esc_url($header_phone).'"><span>'.esc_html($header_phone).'</span></a></div>';
if($facebook)
echo '<div class="social-icon"><a href="'.esc_url($facebook).'"><i class="ion-social-facebook" aria-hidden="true"></i></a></div>';
if($twitter)
echo '<div class="social-icon"><a href="'.esc_url($twitter).'"><i class="ion-social-twitter" aria-hidden="true"></i></a></div>';
if($instagram)
echo '<div class="social-icon"><a href="'.esc_url($instagram).'"><i class="ion-social-instagram" aria-hidden="true"></i></a></div>'; ?>
</div>
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse"
data-target="#navbar-collapse" aria-expanded="false">
<span class="sr-only"><?php echo esc_html__('Toggle navigation','hotel-vivanta'); ?></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
</div>
</div>
</header><!-- #masthead -->
<!-- /main-wrap -->