Advertisement
Guest User

Untitled

a guest
Mar 12th, 2016
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.39 KB | None | 0 0
  1. if( ! function_exists( 'videotube_remove_wpbakery_menu' ) ){
  2.     function videotube_remove_wpbakery_menu() {
  3.        
  4.         if( ! is_user_logged_in() ){
  5.             return;
  6.         }
  7.        
  8.         if( in_array( array_shift( wp_get_current_user()->roles ) , array( 'contributor', 'subscriber' ) ) ){
  9.             remove_action( 'admin_menu', 'vc_menu_page_build' );
  10.         }  
  11.     }
  12.     add_action( 'init' , 'videotube_remove_wpbakery_menu' );
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement