searchwp\query\results
Da: 4.0.0
Indice
Modifica i risultati trovati da SearchWP.
Parametri
| Tipo | Parametro | Predefinito | Da |
|---|---|---|---|
| Array | $results |
Risultati della query | 4.0.0 |
| \SearchWP\Query | $query |
La Query in esecuzione | 4.0.0 |
Esempi
All hooks should be added to your custom SearchWP Customizations Plugin.
Personalizza i risultati restituiti
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 ); |

