searchwp\query\results
Since: 4.0.0
Table of Contents
Modify the results found by SearchWP.
Parameters
Type | Parameter | Default | Since |
---|---|---|---|
Array | $results |
Results of Query | 4.0.0 |
\SearchWP\Query | $query |
The Query being run | 4.0.0 |
Examples
All hooks should be added to your custom SearchWP Customizations Plugin.
Customize the results returned
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 the results returned by SearchWP. | |
add_filter( 'searchwp\query\results', function( $results, $query ) { | |
// This is where you can manipulate the $results array of results. | |
return $results; | |
}, 30, 2 ); |