searchwp\settings\capability
4.0.0以降
SearchWPの設定を編集するために必要な権限を制御します。
パラメータ
| タイプ | パラメータ | デフォルト | 提供開始 |
|---|---|---|---|
| 文字列 | $capability |
'manage_options' |
4.0.0 |
例
All hooks should be added to your custom SearchWP Customizations Plugin.
エディターがSearchWPの設定を管理できるようにする
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 | |
| // Allow Editors to manage SearchWP's settings. | |
| add_filter( 'searchwp\settings\capability', function( $capability ) { | |
| return 'edit_others_posts'; | |
| } ); |

