searchwp\statistics\capability
Seit: 4.0.0
Steuern Sie die Berechtigung, die erforderlich ist, um die Statistiken von SearchWP anzuzeigen.
Parameter
| Typ | Parameter | Standard | Seit |
|---|---|---|---|
| Zeichenkette | $capability |
'edit_others_posts' |
4.0.0 |
Beispiele
All hooks should be added to your custom SearchWP Customizations Plugin.
Statistiken nur für Administratoren anzeigen
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'; | |
| } ); |

