searchwp\statistics\capability
4.0.0以降
パラメータ
| タイプ | パラメータ | デフォルト | 提供開始 |
|---|---|---|---|
| 文字列 | $capability |
'edit_others_posts' |
4.0.0 |
例
All hooks should be added to your custom SearchWP Customizations Plugin.
統計情報の表示を管理者に制限する
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'; | |
| } ); |

