searchwp\statistics\log
Da: 4.0.0
Indice
Controlla se SearchWP registra questa ricerca.
Parametri
| Tipo | Parametro | Predefinito | Da |
|---|---|---|---|
| Booleano | $enabled |
true (se la query di ricerca non viene ignorata) |
4.0.0 |
| \SearchWP\Query | $query |
La Query in esecuzione | 4.0.0 |
Esempi
Tutti gli hook dovrebbero essere aggiunti al tuo plugin personalizzato SearchWP Customizations Plugin.
Disabilita la registrazione delle ricerche per chiunque sia connesso
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 ); |
