Advertisement
navjotjsingh

Remove Wordpress Update Notification For all Users Except Admin

Jun 13th, 2011
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.20 KB | None | 0 0
  1. add_action('admin_init', 'run_chk_usr_lvl');
  2. function run_chk_usr_lvl($matches) {
  3.     //global $userdata;
  4.     if (!current_user_can('update_plugins'))
  5.         remove_action('admin_notices', 'update_nag', 3);
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement