JoeHana
9/13/2013 - 3:23 PM

Custom Search Form Labels

Custom Search Form Labels

<?php

/**
 * Custom Search Form Labels
 */
 
add_filter('wpsight_listing_search_labels', 'custom_listing_search_labels', 11);

function custom_listing_search_labels($search_labels) {
	
    $search_labels = array(
    	'default'   => __( 'Keyword or Listing ID', 'wpsight' ) . '&hellip;',
    	'submit'    => __( 'Search', 'wpsight' ),
    	'advanced'  => __( 'Advanced Search', 'wpsight' ),
    	'reset'  	=> __( 'Reset', 'wpsight' ),
    	'price' 	=> __( 'Price', 'wpsight' ),
    	'price_min' => __( 'Price (min)', 'wpsight' ),
    	'price_max' => __( 'Price (max)', 'wpsight' ),
    	'orderby' 	=> __( 'Orderby', 'wpsight' ),
    	'order' 	=> __( 'Order', 'wpsight' ),
    	'desc' 		=> __( 'descending', 'wpsight' ),
    	'asc' 		=> __( 'ascending', 'wpsight' ),
    	'results' 	=> __( 'Results', 'wpsight' )
    );
	
	return $search_labels;
}