searchwp\debug
Da: 4.0.0
Indice
Controlla se il debug è abilitato.
Parametri
| Tipo | Parametro | Predefinito | Da |
|---|---|---|---|
| Booleano | $enabled |
Stato della casella di controllo nella scheda Avanzate della schermata delle impostazioni di SearchWP | 4.0.0 |
Esempi
Tutti gli hook dovrebbero essere aggiunti al tuo plugin personalizzato SearchWP Customizations Plugin.
Abilita debug
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 | |
| // Enable debugging in SearchWP. | |
| add_filter( 'searchwp\debug', '__return_true' ); |
