searchwp\missing_integration_notices
Depuis : 4.0.0
Table des matières
Par défaut, SearchWP vérifie s’il existe des extensions d’intégration manquantes. Vous pouvez désactiver ce comportement avec ce hook.
Paramètres
| Type | Paramètre | Défaut | Depuis |
|---|---|---|---|
| Booléen | $enabled |
true |
4.0.0 |
Exemples
All hooks should be added to your custom SearchWP Customizations Plugin.
Désactiver la notification d’intégration manquante
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 missing integrations notice in SearchWP. | |
| add_filter( 'searchwp\missing_integration_notices', '__return_false' ); |

