searchwp\statistics\capability
Depuis : 4.0.0
Table des matières
Contrôlez la Capacité nécessaire pour afficher les Statistiques de SearchWP.
Paramètres
| Type | Paramètre | Défaut | Depuis |
|---|---|---|---|
| Chaîne | $capability |
'edit_others_posts' |
4.0.0 |
Exemples
All hooks should be added to your custom SearchWP Customizations Plugin.
Restreindre la visualisation des statistiques aux administrateurs
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 | |
| // Restrict viewing Statistics to Administrators in SearchWP. | |
| add_filter( 'searchwp\statistics\capability', function( $capability ) { | |
| return 'manage_options'; | |
| } ); |

