searchwp\query\results
Desde: 4.0.0
Sumário
Modifique os resultados encontrados pelo SearchWP.
Parâmetros
| Tipo | Parâmetro | Padrão | Desde |
|---|---|---|---|
| Array | $results |
Resultados da Consulta | 4.0.0 |
| \SearchWP\Query | $query |
A consulta que está sendo executada | 4.0.0 |
Exemplos
All hooks should be added to your custom SearchWP Customizations Plugin.
Personalize os resultados retornados
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 ); |

