JoeHana
9/11/2013 - 12:41 AM

Modify Search Form Labels

Modify Search Form Labels

<?php

/**
 * Modify Search Form Labels
 */
 
add_filter('wpsight_search_form_details', 'custom_search_form_details', 11);

function custom_search_form_details($search_details) {

	$search_details['location']['label'] = __( 'Location', 'wpsight' );
	
	return $search_details;
}