Skip to content

Instantly share code, notes, and snippets.

@ofernandolopes
Created December 26, 2022 17:34
Show Gist options
  • Save ofernandolopes/8b3df57837f87daa294546a9f95240d3 to your computer and use it in GitHub Desktop.
Save ofernandolopes/8b3df57837f87daa294546a9f95240d3 to your computer and use it in GitHub Desktop.
WordPress - Hide all admin notices for everyone except admin users
//Hide all admin notices for everyone except admin users
//https://wordpress.stackexchange.com/questions/396302/how-can-i-programattically-hide-all-admin-notices-for-everyone-except-admin-user
add_action(
'admin_notices',
function() {
if ( ! current_user_can( 'manage_options' ) ) {
remove_all_actions( 'admin_notices' );
}
},
0
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment