Created
December 4, 2019 13:58
-
-
Save JoeHana/c0e4b48eb7b12d0c1a65522e8064a715 to your computer and use it in GitHub Desktop.
Custom number of features in search form
This file contains hidden or 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 number of features in search form | |
*/ | |
add_filter( 'wpsight_get_advanced_search_fields', 'custom_get_advanced_search_fields' ); | |
function custom_get_advanced_search_fields( $fields ) { | |
$fields['feature']['data']['number'] = 20; | |
return $fields; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment