Hide admin notices/notifications from everyone but super admin?

I have a Multisite setup, and I would like to hide all notices/notifications from the admin pages for everyone but me (the Super Admin).
How would I manage to do this?

Thank you!

3 s
3

Try this code in your custom plugin which is better to activate for the network.

if ( !is_super_admin() ) {
    remove_all_actions('admin_notices');
}

Leave a Comment