JoeHana
8/13/2013 - 7:46 PM

Custom Label for Property Detail

Custom Label for Property Detail

<?php

/**
 * Custom Label for Property Detail
 */
 
add_filter('wpsight_search_form_details', 'custom_search_form_details');

function custom_search_form_details($search_details) {
    
	$search_details['property-type']['label'] = __( 'haha', 'wpcasa' );
	
	// Return filtrable array	
	return $search_details;
	
}