remove Simple Redirect meta box for subUser
-
Hello,
I’m ‘trying to hide the Simple Redirect meta box on my page and custom post but just for the User below administrator. I’m already doing this with the page attribute widget from the page with this code:
function remove_different_meta_box() { if( is_admin() ) { if( !current_user_can('administrator') ) { remove_meta_box('pageparentdiv', 'page', 'normal'); } } } add_action( 'admin_menu', 'remove_different_meta_box' );
Any suggestion?
Thank’s in advance!
- The topic ‘remove Simple Redirect meta box for subUser’ is closed to new replies.