Created
February 23, 2016 19:20
-
-
Save alandbh/ba872c1633769f9174c9 to your computer and use it in GitHub Desktop.
Remove o aviso para atualizar o Wordpress
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ---------------- | |
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