searchwp\statistics\log
Desde: 4.0.0
Sumário
Controle se o SearchWP registra esta pesquisa.
Parâmetros
| Tipo | Parâmetro | Padrão | Desde |
|---|---|---|---|
| Booleano | $enabled |
true (se a consulta de pesquisa não for ignorada) |
4.0.0 |
| \SearchWP\Query | $query |
A consulta que está sendo executada | 4.0.0 |
Exemplos
Todos os hooks devem ser adicionados a seu plugin personalizado SearchWP Customizations Plugin.
Desativar o registro de pesquisas para qualquer pessoa conectada
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 | |
| // Disable SearchWP's logging of searches for anyone who is logged in. | |
| add_filter( 'searchwp\statistics\log', function( $enabled, $query ) { | |
| return ! is_user_logged_in(); | |
| }, 20, 2 ); |

