searchwp\missing_integration_notices
Seit: 4.0.0
Standardmäßig prüft SearchWP, ob fehlende Integrationen Erweiterungen vorhanden sind. Sie können dieses Verhalten mit diesem Hook deaktivieren.
Parameter
| Typ | Parameter | Standard | Seit |
|---|---|---|---|
| Boolean | $enabled |
wahr |
4.0.0 |
Beispiele
All hooks should be added to your custom SearchWP Customizations Plugin.
Hinweis zu fehlenden Integrationen deaktivieren
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' ); |

