有什么办法可以隐藏除管理员以外的其他角色的 WPBakery Page Builder 选项卡

Is there any way I can hide the WPBakery Page Builder tab for other roles except admin

我正在尝试为除管理员之外的所有角色隐藏 WPBakery Page Builder 选项卡。

我尝试使用 adminimize 插件这样做,但该选项卡在所有角色中仍然可见。 https://wordpress.org/plugins/adminimize/

我也试过下面的代码,但我只能为管理员做,不能为其他角色做。

if ( !is_admin() ) {
    function custom_menu_page_removing() 
    {
    remove_menu_page('vc-general'); //vc
    }
add_action( 'admin_init', 'custom_menu_page_removing' );
}

vc-welcome 将对除管理员以外的所有其他角色隐藏菜单,因此无需编写 if 条件,您可以尝试以下代码

function custom_menu_page_removing() {
    remove_menu_page('vc-welcome');
    }
add_action( 'admin_init', 'custom_menu_page_removing' );  

我认为有更好的方法可以直接从 WPBakery Page Builder 设置中执行此操作。您可以按照下图中的菜单将“设置”选项设置为禁用。

WPBakery Page Builder > Role Manager