searchwp\admin_bar
Depuis : 4.0.0
Table des matières
Contrôlez si l'entrée de la barre d'administration de SearchWP est activée.
Paramètres
| Type | Paramètre | Défaut | Depuis |
|---|---|---|---|
| Booléen | $enabled |
current_user_can( \SearchWP\Settings::$capability ) |
4.0.0 |
Exemples
All hooks should be added to your custom SearchWP Customizations Plugin.
Désactiver l'entrée de la barre d'administration de SearchWP
Désactiver l'entrée de la barre d'administration de SearchWP
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 Admin Bar entry. | |
| add_filter( 'searchwp\admin_bar', '__return_false' ); |

