searchwp\statistics\log
Depuis : 4.0.0
Table des matières
Contrôlez si SearchWP enregistre cette recherche.
Paramètres
| Type | Paramètre | Défaut | Depuis |
|---|---|---|---|
| Booléen | $enabled |
vrai (si la requête de recherche n'est pas ignorée) |
4.0.0 |
| \SearchWP\Query | $requête |
La requête en cours d'exécution | 4.0.0 |
Exemples
All hooks should be added to your custom SearchWP Customizations Plugin.
Désactiver la journalisation des recherches pour toute personne connectée
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 ); |

