| 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; ?> |