Opal-Estate-Pro/templates/single-property/sameagent.php
2019-09-10 11:27:33 +07:00

22 lines
845 B
PHP
Executable File

<?php
global $post;
$agent_id = Opalestate_Query::get_agent_by_property($post->ID);
$properties = Opalestate_Query::get_agent_property( get_the_ID(), $agent_id, 3 );
if( $properties->have_posts() ) :
?>
<div class="box-info property-same-agent-section clearfix">
<h4 class="box-heading"><?php printf( esc_html__( 'Properties by %s', 'opalestate-pro' ), get_the_title( $agent_id ) ); ?></h4>
<div class="box-content opalestate-rows">
<div class="<?php echo apply_filters('opalestate_row_container_class', 'opal-row');?>">
<?php while( $properties->have_posts() ) : $properties->the_post(); ?>
<div class="col-lg-4 col-md-4 col-sm-6 col-xs-12">
<?php echo opalestate_load_template_path( 'content-property-grid' ); ?>
</div>
<?php endwhile; ?>
</div>
</div>
</div>
<?php wp_reset_postdata(); ?>
<?php endif; ?>