| Server IP : 89.108.64.180 / Your IP : 216.73.217.92 Web Server : Apache/2.4.41 (Ubuntu) System : Linux 89-108-64-180.cloudvps.regruhosting.ru 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : www-root ( 1010) PHP Version : 8.0.30 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/www-root/data/www/odissey.com.ru/wp-content/themes/hotelmaster/ |
Upload File : |
<?php
/*
* The template for displaying a header title section
*/
global $theme_option, $hotel_option, $hostel_option, $gdlr_post_option;
$header_background = '';
if( !empty($gdlr_post_option['header-background']) ){
if( is_numeric($gdlr_post_option['header-background']) ){
$image_src = wp_get_attachment_image_src($gdlr_post_option['header-background'], 'full');
$header_background = $image_src[0];
}else{
$header_background = $gdlr_post_option['header-background'];
}
}
?>
<?php if(( !empty($hotel_option['booking-slug']) && isset($_GET[$hotel_option['booking-slug']]) ) ||
( !empty($hostel_option['booking-slug']) && isset($_GET[$hostel_option['booking-slug']]) )){ ?>
<div class="gdlr-page-title-wrapper" <?php echo empty($header_background)? '': 'style="background-image: url(\'' . esc_url($header_background) . '\'); "'; ?> >
<div class="gdlr-page-title-overlay"></div>
<div class="gdlr-page-title-container container" >
<h1 class="gdlr-page-title"><?php _e('Booking', 'gdlr_translate') ?></h1>
</div>
</div>
<?php }else if( is_page() && (empty($gdlr_post_option['show-title']) || $gdlr_post_option['show-title'] != 'disable') ){ ?>
<?php $page_background = ''; ?>
<div class="gdlr-page-title-wrapper" <?php echo empty($header_background)? '': 'style="background-image: url(\'' . esc_url($header_background) . '\'); "'; ?> >
<div class="gdlr-page-title-overlay"></div>
<div class="gdlr-page-title-container container" >
<h1 class="gdlr-page-title"><?php the_title(); ?></h1>
<?php if( !empty($gdlr_post_option['page-caption']) ){ ?>
<span class="gdlr-page-caption"><?php echo gdlr_text_filter(gdlr_escape_string($gdlr_post_option['page-caption'])); ?></span>
<?php } ?>
</div>
</div>
<?php }else if( is_single() && $post->post_type == 'post' ){
if( !empty($gdlr_post_option['page-title']) ){
$page_title = $gdlr_post_option['page-title'];
$page_caption = $gdlr_post_option['page-caption'];
}else{
$page_title = $theme_option['post-title'];
$page_caption = $theme_option['post-caption'];
}
?>
<div class="gdlr-page-title-wrapper" <?php echo empty($header_background)? '': 'style="background-image: url(\'' . esc_url($header_background) . '\'); "'; ?> >
<div class="gdlr-page-title-overlay"></div>
<div class="gdlr-page-title-container container" >
<h3 class="gdlr-page-title"><?php echo gdlr_text_filter(gdlr_escape_string($page_title)); ?></h3>
<?php if( !empty($page_caption) ){ ?>
<span class="gdlr-page-caption"><?php echo gdlr_text_filter(gdlr_escape_string($page_caption)); ?></span>
<?php } ?>
</div>
</div>
<?php }else if( is_single() && $post->post_type == 'room' ){
if( !empty($gdlr_post_option['page-title']) ){
$page_title = $gdlr_post_option['page-title'];
$page_caption = $gdlr_post_option['page-caption'];
}else{
$page_title = get_the_title();
$page_caption = $gdlr_post_option['page-caption'];
}
?>
<div class="gdlr-page-title-wrapper" <?php echo empty($header_background)? '': 'style="background-image: url(\'' . esc_url($header_background) . '\'); "'; ?> >
<div class="gdlr-page-title-overlay"></div>
<div class="gdlr-page-title-container container" >
<h3 class="gdlr-page-title"><?php echo gdlr_text_filter(gdlr_escape_string($page_title)); ?></h3>
<?php if( !empty($page_caption) ){ ?>
<span class="gdlr-page-caption"><?php echo gdlr_text_filter(gdlr_escape_string($page_caption)); ?></span>
<?php } ?>
</div>
</div>
<?php }else if( is_single() ){ // for custom post type
$page_title = get_the_title();
if( !empty($gdlr_post_option) && !empty($gdlr_post_option['page-caption']) ){
$page_caption = $gdlr_post_option['page-caption'];
}else if($post->post_type == 'portfolio' && !empty($theme_option['page-caption']) ){
$page_caption = $theme_option['portfolio-caption'];
}
?>
<div class="gdlr-page-title-wrapper" <?php echo empty($header_background)? '': 'style="background-image: url(\'' . esc_url($header_background) . '\'); "'; ?> >
<div class="gdlr-page-title-overlay"></div>
<div class="gdlr-page-title-container container" >
<h1 class="gdlr-page-title"><?php echo gdlr_text_filter(gdlr_escape_string($page_title)); ?></h1>
<?php if( !empty($page_caption) ){ ?>
<span class="gdlr-page-caption"><?php echo gdlr_text_filter(gdlr_escape_string($page_caption)); ?></span>
<?php } ?>
</div>
</div>
<?php }else if( is_404() ){ ?>
<div class="gdlr-page-title-wrapper" <?php echo empty($header_background)? '': 'style="background-image: url(\'' . esc_url($header_background) . '\'); "'; ?> >
<div class="gdlr-page-title-overlay"></div>
<div class="gdlr-page-title-container container" >
<h1 class="gdlr-page-title"><?php _e('404', 'gdlr_translate'); ?></h1>
<span class="gdlr-page-caption"><?php _e('Page not found', 'gdlr_translate'); ?></span>
</div>
</div>
<?php }else if( is_archive() || is_search() ){
if( is_search() ){
$title = __('Search Results', 'gdlr_translate');
$caption = get_search_query();
}else if( is_category() || is_tax('portfolio_category') || is_tax('product_cat') ){
$title = __('Category','gdlr_translate');
$caption = single_cat_title('', false);
}else if( is_tag() || is_tax('portfolio_tag') || is_tax('product_tag') ){
$title = __('Tag','gdlr_translate');
$caption = single_cat_title('', false);
}else if( is_day() ){
$title = __('Day','gdlr_translate');
$caption = get_the_date('F j, Y');
}else if( is_month() ){
$title = __('Month','gdlr_translate');
$caption = get_the_date('F Y');
}else if( is_year() ){
$title = __('Year','gdlr_translate');
$caption = get_the_date('Y');
}else if( is_author() ){
$title = __('By','gdlr_translate');
$author_id = get_query_var('author');
$author = get_user_by('id', $author_id);
$caption = $author->display_name;
}else if( is_post_type_archive('product') ){
$title = __('Shop', 'gdlr_translate');
$caption = '';
}else if( is_post_type_archive('room') || is_post_type_archive('hotel_room') ){
$title = __('Our Best Rooms', 'gdlr_translate');
$caption = '';
}else{
$title = get_the_title();
$caption = '';
}
?>
<div class="gdlr-page-title-wrapper" <?php echo empty($header_background)? '': 'style="background-image: url(\'' . esc_url($header_background) . '\'); "'; ?> >
<div class="gdlr-page-title-overlay"></div>
<div class="gdlr-page-title-container container" >
<span class="gdlr-page-title"><?php echo gdlr_text_filter(gdlr_escape_string($title)); ?></span>
<?php if( !empty($caption) ){ ?>
<h1 class="gdlr-page-caption"><?php echo gdlr_text_filter(gdlr_escape_string($caption)); ?></h1>
<?php } ?>
</div>
</div>
<?php } ?>
<!-- is search -->