This snippet lets you modify the fields of the advanced search
Read here to find out about how to add code snippets to your site.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Custom Advanced Search Fields | |
*/ | |
add_filter( 'wpsight_get_advanced_search_fields', 'custom_get_advanced_search_fields', 11 ); | |
function custom_get_advanced_search_fields( $fields ) { | |
$fields_advanced = array( | |
'min' => array( | |
'label' => __( 'Price (min)', 'wpcasa-advanced-search' ), | |
'key' => '_price', | |
'type' => 'text', | |
'data_compare' => '>=', | |
'data_type' => 'numeric', | |
'advanced' => true, | |
'class' => 'width-1-4', | |
'priority' => 90 | |
), | |
'max' => array( | |
'label' => __( 'Price (max)', 'wpcasa-advanced-search' ), | |
'key' => '_price', | |
'type' => 'text', | |
'data_compare' => '<=', | |
'data_type' => 'numeric', | |
'advanced' => true, | |
'class' => 'width-1-4', | |
'priority' => 100 | |
), | |
'orderby' => array( | |
'label' => __( 'Order by', 'wpcasa-advanced-search' ), | |
'type' => 'select', | |
'data' => array( | |
'date' => __( 'Date', 'wpcasa-advanced-search' ), | |
'price' => __( 'Price', 'wpcasa-advanced-search' ), | |
'title' => __( 'Title', 'wpcasa-advanced-search' ) | |
), | |
'default' => 'date', | |
'advanced' => true, | |
'class' => 'width-1-4', | |
'priority' => 110 | |
), | |
'order' => array( | |
'label' => __( 'Order', 'wpcasa-advanced-search' ), | |
'type' => 'select', | |
'data' => array( | |
'asc' => __( 'asc', 'wpcasa-advanced-search' ), | |
'desc' => __( 'desc', 'wpcasa-advanced-search' ) | |
), | |
'default' => 'desc', | |
'advanced' => true, | |
'class' => 'width-1-4', | |
'priority' => 120 | |
), | |
'feature' => array( | |
'label' => '', | |
'data' => array( | |
// get_terms() options | |
'taxonomy' => 'feature', | |
'orderby' => 'count', | |
'order' => 'DESC', | |
'operator' => 'AND', // can be OR | |
'number' => 8 | |
), | |
'type' => 'taxonomy_checkbox', | |
'advanced' => true, | |
'class' => 'width-auto', | |
'priority' => 130 | |
) | |
); | |
return $fields; | |
} |
Other articles in Snippets
- Snippet: Disable Visual Editor on Listings Page
- Snippet: Custom number of features in search form
- Using Code Snippets
- Snippet: Custom number of baths and beds in Listing Details
- Snippet: Set specific offer as default in listing price metabox
- Snippet: Modify Measurements
- Snippet: Display advanced search fields by default
- Snippet: Re-order fields in search form
- Snippet: Remove Features from Search Form
- Snippet: Add custom text (from) before price
- Snippet: Make Listing Type Taxonomy hierarchical
- Snippet: Custom Listing Post Type Slug
- Snippet: Custom Listing Type Taxonomy Slug
- Snippet: Custom Listing Feature Taxonomy Slug
- Snippet: Custom Listing Location Taxonomy Slug
- Snippet: Custom Listing Category Taxonomy Slug
- Snippet: Change Labels of Listing Post Type
- Snippet: Change Archive Title
- Snippet: Add Custom Listing Details
- Snippet: Add Custom Listing Detail with Pre-defined Options
- Snippet: Add custom listing offer
- Snippet: Search Exact Value of Bedrooms
- Snippet: Change Default Search Form Labels
- Snippet: Change Advanced Search Form Labels
- Snippet: Only Display Keyword Search in Property Search Form
- Snippet: Search Exact Value of Bathrooms
- Snippet: Remove ‘Offer’ from Property Search Form
- Snippet: Change Placeholder Text of the Keyword Search Field
- Snippet: Show Different Offer Badge when Listing Item is not Available
- Snippet: Change Details of the Listing Summary