searchwp\query\results
Seit: 4.0.0
Ändern Sie die von SearchWP gefundenen Ergebnisse.
Parameter
| Typ | Parameter | Standard | Seit |
|---|---|---|---|
| Array | $results |
Ergebnisse der Abfrage | 4.0.0 |
| \SearchWP\Query | $query |
Die ausgeführte Abfrage | 4.0.0 |
Beispiele
All hooks should be added to your custom SearchWP Customizations Plugin.
Passen Sie die zurückgegebenen Ergebnisse an
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 | |
| // 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 ); |

