searchwp\statistics\capability
Da: 4.0.0
Indice
Controlla la Capability necessaria per visualizzare le Statistiche di SearchWP.
Parametri
| Tipo | Parametro | Predefinito | Da |
|---|---|---|---|
| Stringa | $capability |
'edit_others_posts' |
4.0.0 |
Esempi
All hooks should be added to your custom SearchWP Customizations Plugin.
Restringi la visualizzazione delle statistiche agli amministratori
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'; | |
| } ); |

