Admin Menu Only for Super Admin?
-
Hello! Great plugin!
I just have a question regarding a multisite network. Is there a way to hide the WP Security menu on the left for admins? I only want it to show for the Super Admin.
Thank you!
Edit:
Is there a way to do it built in? I just discovered this method and will post it here to help anybody else.
if ( !is_super_admin() ) {
add_action( ‘admin_menu’, ‘remove_wp_menu’ );
}
function remove_wp_menu() {
remove_menu_page( ‘aiowpsec’ );
}Is that safe and the right way to do it? It seems to work fine and I get no errors.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Admin Menu Only for Super Admin?’ is closed to new replies.