Skip to content

Instantly share code, notes, and snippets.

@alandbh
Created February 23, 2016 19:20
Show Gist options
  • Save alandbh/ba872c1633769f9174c9 to your computer and use it in GitHub Desktop.
Save alandbh/ba872c1633769f9174c9 to your computer and use it in GitHub Desktop.
Remove o aviso para atualizar o Wordpress
/* ----------------
Remove o aviso para atualizar o Wordpress
Alan
----------------- */
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