searchwp\statistics\capability
Desde: 4.0.0
Tabla de contenidos
Controla la Capacidad necesaria para ver las Estadísticas de SearchWP.
Parámetros
| Tipo | Parámetro | Predeterminado | Desde |
|---|---|---|---|
| Cadena | $capability |
'edit_others_posts' |
4.0.0 |
Ejemplos
All hooks should be added to your custom SearchWP Customizations Plugin.
Restringir la visualización de Estadísticas a los Administradores
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'; | |
| } ); |

