Skip to content

Instantly share code, notes, and snippets.

@rickbenetti
Created February 10, 2016 14:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rickbenetti/5f938f41f683d9f17bef to your computer and use it in GitHub Desktop.
Save rickbenetti/5f938f41f683d9f17bef to your computer and use it in GitHub Desktop.
function hide_update_notice_to_all_but_admin_users()
{
if (!current_user_can('update_core')) {
remove_action( 'admin_notices', 'update_nag', 3 );
}
}
add_action( 'admin_head', 'hide_update_notice_to_all_but_admin_users', 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment