Created
April 18, 2019 16:55
-
-
Save jchristopher/39f5a2e01e8e5d780a840993cc016aef to your computer and use it in GitHub Desktop.
Customize SearchWP arguments when performing a search
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 | |
// Customize SearchWP arguments when performing a search. | |
add_filter( 'searchwp_search_args', function( $args ) { | |
// $args['terms'] // The search terms for this request. | |
// $args['engine'] // The engine used for the search. | |
// $args['page'] // Which page of results to retrieve. | |
// $args['posts_per_page'] // How many posts per page to retrieve. | |
// $args['order'] // Sorting order of results (ASC or DESC). | |
// $args['load_posts'] // Whether to load the full WP_Post object for each result. | |
// TODO: Customize $args to match your needs. | |
return $args; | |
} ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment