Skip to content

Instantly share code, notes, and snippets.

@JoeHana
Created December 4, 2019 13:58
Show Gist options
  • Save JoeHana/c0e4b48eb7b12d0c1a65522e8064a715 to your computer and use it in GitHub Desktop.
Save JoeHana/c0e4b48eb7b12d0c1a65522e8064a715 to your computer and use it in GitHub Desktop.
Custom number of features in search form
<?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