1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
<?php
/**
* SHORTCODE :: Commercial Listing Search [commercial_listing_search]
*
* @package EPL
* @subpackage Shortcode/CommercialListingSearch
* @copyright Copyright (c) 2020, Merv Barrett
* @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
* @since 1.2
*/
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Commercial Listing Search [commercial_listing_search] This shortcode allows for you to specify the property type(s) using
* [commercial_listing_search title="" post_type="commercial" property_status="current/sold/leased" search_house_category="on/off" search_price="on/off" search_bed="on/off" search_bath="on/off" search_car="on/off" search_other="on/off"] option
*
* @param array $atts shortcode array of options.
*
* @return false|string
* @since 1.2
*/
function epl_shortcode_commercial_listing_search_callback( $atts ) {
$attributes = shortcode_atts( epl_commercial_search_get_defaults(), $atts );
ob_start();
// Rendering view of listing search shortcode.
epl_get_template_part( 'shortcodes/commercial-listing-search/' . ( ! empty( $attributes['view'] ) ? trim( $attributes['view'] ) . '.php' : 'default.php' ), array( 'atts' => $attributes ) );
return ob_get_clean();
}
add_shortcode( 'commercial_listing_search', 'epl_shortcode_commercial_listing_search_callback' );