Hide upgrade message notice in admin


/ Published in: PHP
Save to your folder(s)



Copy this code and paste it in your HTML
  1. add_action('admin_menu','bhhidenag');
  2. function bhhidenag()
  3. {
  4. remove_action( 'admin_notices', 'update_nag', 3 );
  5. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.