Skip to content

Instantly share code, notes, and snippets.

@schutzsmith
Created April 14, 2019 05:13
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 schutzsmith/9a33be9550bc70a208a6981fd5f7aa5b to your computer and use it in GitHub Desktop.
Save schutzsmith/9a33be9550bc70a208a6981fd5f7aa5b to your computer and use it in GitHub Desktop.
Remove WordPress Updates Notification
// remove update notifications
<?php
function no_update_notification() {
if (!current_user_can('activate_plugins')) remove_action('admin_notices', 'update_nag', 3);
}
add_action('admin_notices', 'no_update_notification', 1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment