Snippet: Change Advanced Search Form Labels

Use the following code to change the advanced search form field labels applying the wpsight_get_advanced_search_fields filter hook.

Read here to find out about how to add code snippets to your site.

<?php
/**
* Change advanced search labels
*
* @param array $fields Default search fields
* @uses wpsight_details()
* @return array
*/
add_filter( 'wpsight_get_advanced_search_fields', 'wpsight_get_advanced_search_fields_labels' );
function wpsight_get_advanced_search_fields_labels( $fields ) {
$fields['min']['label'] = __( 'Price (min)', 'wpcasa-advanced-search' );
$fields['max']['label'] = __( 'Price (max)', 'wpcasa-advanced-search' );
$fields['orderby']['label'] = __( 'Order by', 'wpcasa-advanced-search' );
$fields['order']['label'] = __( 'Order', 'wpcasa-advanced-search' );
$fields['feature']['label'] = ''; // empty by default
return $fields;
}

Was this article helpful? Yes · No