How To Hide Wordpress’s “Update Now” Notice
We all love Wordpress, but recently they have been pumping out new version faster than we can keep up.
I make websites for clients using Wordpress, and one of the most annoying things is the banner displayed at the top of the admin area, saying there is a new version, and becuase of that, they want their website update now!

Upgrade Notification in Wordpress. We don't always want it displayed.
Like all clients, as soon as my clients see this, they have to have their website updated immediately! And then I have to go through all the joys of making sure all the plugins works etc.
So to overcome this annoying update notification, I came up witht the following solution:
I wrote a plugin called “Hide WP Nag”
It simply calls the built-in Wordpress function remove_action( ‘admin_notices’.
Its really simple and works very well.
I don’t know how backward compatible it is, but it works in all version since 2.8.3 to 2.8.6,
You can download the plugin here. Unzip it and then upload to your /plugin directory and activate as usual.
For those propellor heads like myself, that want to see how it works, here is the plugin in all its glory
<?php
/*
Plugin Name: Hide WP Update Reminder
Plugin URI: http://www.websitesecrets101.com/how-to-hide-wordpresss-update-now-notification
Description: Allows you to remove the upgrade Nag screen from view
Author: Bruce Hearder
Version: 1.0
Author URI:http://www.websitesecrets101.com/
*/
add_action('admin_menu','bhhidenag');
function bhhidenag()
{
remove_action( 'admin_notices', 'update_nag', 3 );
}
?>
I hope this helps

December 14th, 2009 at 2:52 pm
Hi Bruce, thanks for the plug-in! Problem: I noticed that when changing user options in the admin panel, the page goes blank upon submit. I deactivated all my plugins and it seems to be yours. FYI… Cheers, John
December 14th, 2009 at 3:04 pm
BTW, I’m on WP 2.85
December 14th, 2009 at 3:39 pm
Hi John,
I’ve just upload a new version so try downloading a new one and see if it works a bit better.
Bruce
December 15th, 2009 at 1:40 pm
Perfect. Thanks Bruce!
December 20th, 2009 at 8:59 pm
Great, helpful
January 21st, 2010 at 2:08 pm
Hi Bruce, i had the same issue as you with your clients, tried a hack but was unstable, the plugin works like a charm. Thanks a lot!!!
January 21st, 2010 at 4:43 pm
Glad you liked it..
I’ve got a bunch more WP plugins coming out over the new few weeks.
Most of these plugins are designed to really optimize a WP blog the the max (SEO Wise that is).
So keep tuned and maybe I’ll have the plugins you want.
Bruce
February 16th, 2010 at 12:03 pm
thanks for this plugin, this is what i’m looking for.