Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- if( ! function_exists( 'videotube_remove_wpbakery_menu' ) ){
- function videotube_remove_wpbakery_menu() {
- if( ! is_user_logged_in() ){
- return;
- }
- if( in_array( array_shift( wp_get_current_user()->roles ) , array( 'contributor', 'subscriber' ) ) ){
- remove_action( 'admin_menu', 'vc_menu_page_build' );
- }
- }
- add_action( 'init' , 'videotube_remove_wpbakery_menu' );
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement