开发者 |
kevinlearynet
zwwuu |
---|---|
更新时间 | 2022年11月26日 05:24 |
PHP版本: | 5.3 及以上 |
WordPress版本: | 6.1.0 |
版权: | GPL v2 or later |
版权网址: | 版权信息 |
By default, the visual editor is available to current user with 'edit_post' capability.
You can change this by hooking into the 'vude_can_use_visual_editor' filter.
add_filter( 'vude_use_visual_editor', 'my_custom_use_visual_editor' ); function my_custom_use_visual_editor( $use_visual_editor) { return current_user_can( 'edit_others_pages' ) }