PluginProbe
WPCasa – Real Estate for WordPress / trunk
WPCasa – Real Estate for WordPress vtrunk
1.5.5 1.5.4 1.5.3 1.5.2 1.5.1 1.5.1.1 trunk 1.2.0 1.2.1 1.2.10 1.2.10.1 1.2.11 1.2.12 1.2.13 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.2.9.1 1.2.9.2 1.3.0 All 31 releases
wpcasa / templates / listing-archive.php

listing-archive.php in WPCasa – Real Estate for WordPress trunk, at templates/listing-archive.php

35 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly ?>
2
3 <div id="listing-<?php the_ID(); ?>" <?php wpsight_listing_class( 'entry-content listing-archive' ); ?> itemscope itemtype="https://schema.org/Product">
4
5 <meta itemprop="name" content="<?php echo esc_attr( $post->post_title ); ?>" />
6
7 <div itemprop="offers" itemscope itemtype="https://schema.org/Offer" class="clearfix">
8
9 <?php do_action( 'wpsight_listing_archive_before', $post ); ?>
10
11 <div class="wpsight-listing-left">
12
13 <?php wpsight_get_template( 'listing-archive-image.php' ); ?>
14
15 </div>
16
17 <div class="wpsight-listing-right">
18
19 <?php wpsight_get_template( 'listing-archive-title.php' ); ?>
20
21 <?php wpsight_get_template( 'listing-archive-info.php' ); ?>
22
23 <?php wpsight_get_template( 'listing-archive-summary.php' ); ?>
24
25 <?php wpsight_get_template( 'listing-archive-description.php' ); ?>
26
27 <?php wpsight_get_template( 'listing-archive-compare.php' ); ?>
28
29 </div>
30
31 <?php do_action( 'wpsight_listing_archive_after', $post ); ?>
32
33 </div>
34
35 </div><!-- #listing-<?php the_ID(); ?> -->