| Server IP : 217.160.0.251 / Your IP : 216.73.216.183 Web Server : Apache System : Linux info 3.0 #1337 SMP Tue Jan 01 00:00:00 CEST 2000 all GNU/Linux User : u94981163 ( 8991765) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /homepages/15/d754908516/htdocs/wp-content/themes/_est-project/ |
Upload File : |
<?php
/**
* The single property template file
*
* @link http://codex.wordpress.org/Template_Hierarchy
*/
global $es_property, $es_settings;
?>
<?php get_header(); ?>
<div class="post-single es-single-<?php echo $es_settings->single_layout; ?>">
<?php while ( have_posts() ) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; // End of the loop.?>
</div>
<div class="sidebar--wide">
<?php if ( is_active_sidebar( 'property-sidebar-right' ) ) {
dynamic_sidebar( 'property-sidebar-right' );
} else {
if ( class_exists( 'Es_Request_Widget' ) )
the_widget( 'Es_Request_Widget',
array( 'title' => __( 'Learn more about this property', 'es-project' ) ) );
} ?>
</div>
<?php get_footer();