File: /home/z/w/a/zwafgyp/dodolodge-net/wp-content/themes/hotel-wp/wrapper.php
<?php
/**
* Set Default value when theme option not save at first time setup
*
*/
do_action( 'thim_wrapper_init' );
if ( is_page_template( 'templates/home-page.php' ) || is_page_template( 'templates/comingsoon.php' ) ) {
$file = thim_template_path();
include $file;
return;
} else {
$file = thim_template_path();
get_header();
?>
<section class="content-area">
<?php
get_template_part( 'templates/page-title/page', 'title' );
do_action( 'thim_wrapper_loop_start' );
include $file;
do_action( 'thim_wrapper_loop_end' );
?>
</section><!-- .content-area -->
<?php
get_footer();
}
?>