Skip to content

Instantly share code, notes, and snippets.

@tevashov
Last active October 27, 2022 21:54
Show Gist options
  • Select an option

  • Save tevashov/5172465 to your computer and use it in GitHub Desktop.

Select an option

Save tevashov/5172465 to your computer and use it in GitHub Desktop.
Remove Dashboard Widgets According to User Role #WP
function customize_meta_boxes() {  
    global $current_user;  
    get_currentuserinfo();  
    if ($current_user->user_level < 3)  
        remove_meta_box('postcustom','post','normal');  
    }  
add_action('admin_init','customize_meta_boxes');  
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment