Change WordPress user roles and capabilities › Forums › How to or FAQ › Blocking page options › Reply To: Blocking page options
		10/01/2015 at 17:06
		
		#1358
		
		
		
	
Keymaster
		
		
	There are no such options in URE. These metaboxes are not managed by user capabilities. So you need to add custom code to remove metabox for selected role. Like this for page attributes:
function remove_page_metaboxes() {
if (current_user_can('some_role')) {
   remove_meta_box('pageparentdiv', 'page', 'side');
}
}
add_action('admin_menu', 'remove_page_metaboxes');
		
	