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-single-features.php

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

24 lines 623 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php if ( ! defined('ABSPATH')) {
2 exit;
3 } // Exit if accessed directly
4
5 /**
6 * Template: Single Listing Features
7 */
8 global $listing; ?>
9
10 <?php if( wpsight_get_listing_terms( 'feature', $listing->ID ) ) : ?>
11
12 <div class="wpsight-listing-section wpsight-listing-section-features">
13
14 <?php do_action( 'wpsight_listing_single_features_before', $listing->ID ); ?>
15
16 <div class="wpsight-listing-features">
17 <?php wpsight_listing_terms( 'feature', $listing->ID, ', ' ); ?>
18 </div>
19
20 <?php do_action( 'wpsight_listing_single_features_after', $listing->ID ); ?>
21
22 </div><!-- .wpsight-listing-section -->
23
24 <?php endif; ?>