| Server IP : 77.68.25.176 / Your IP : 216.73.217.145 Web Server : Apache System : Linux plesk 4.15.0-159-generic #167-Ubuntu SMP Tue Sep 21 08:55:05 UTC 2021 x86_64 User : dwp ( 10001) PHP Version : 7.4.33 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/dazzlingwebplanet.co.uk/sacherconsultancy.com/wp-content/themes/reobiz/ |
Upload File : |
<?php
/**
* @author rs-theme
* @since 1.0
* @version 1.0
*/
?>
<!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="//gmpg.org/xfn/11">
<?php global $reobiz_option; ?>
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<?php
if( ! function_exists( 'wp_body_open' ) ) {
function wp_body_open() {
do_action( 'wp_body_open' );
}
}
$rs_offcanvas = get_post_meta(get_queried_object_id(), 'show-off-canvas', true);
$menu_text_plus_icon = (!empty($reobiz_option['menu_text_plus_icon'])) ? 'sub-menu-plus-show' : '';
$page_title_align = (!empty($reobiz_option['breadcrumb-align'])) ? $reobiz_option['breadcrumb-align'] : '';
if(!empty($reobiz_option['off_canvas']) || ($rs_offcanvas == 'show') ): ?>
<div class="offwrap">
<div class="offwrapcon"></div>
</div>
<?php endif; ?>
<?php if(!empty( $reobiz_option['show-comingsoon']) && !is_user_logged_in()){
get_template_part( 'coming-soon' );
die();
} ?>
<!--Preloader start here-->
<?php
get_template_part( 'inc/header/newsletter' );
get_template_part( 'inc/header/preloader' );
?>
<!--Preloader area end here-->
<div id="page" class="site <?php echo esc_attr($menu_text_plus_icon);?> <?php echo esc_attr($page_title_align);?>">
<?php
get_template_part('inc/header/header');
?>
<!-- End Header Menu End -->
<?php
$page_bg = get_post_meta(get_the_ID(), 'page_bg', true);
if($page_bg !='' && is_page()): ?>
<div class="main-contain offcontents" style="background-image: url('<?php echo esc_url( $page_bg );?>'); ">
<?php else: ?>
<div class="main-contain offcontents">
<?php endif;