Tired of seeing the “A new version of WordPress is available! Please update now” message in the header and footer of your WordPress blog admin screen? I was too and wanted to find a way to disable this message so it would quit bugging me.
I actually almost always upgrade my WordPress to the latest version but I’m holding off on upgrading to 2.5 because I really don’t like it. I know, you hear all the rants and raves about the cool new features which I like as well but there are a few reasons I don’t want to upgrade quite yet. You can read about this in my other post.
So the quickest way to disable the WordPress new version alert message without modifying the code is to install a plugin called “Disable WordPress Core Update“. The plugin itself is only two lines of code which look like this:
add_action( 'init', create_function( '$a', "remove_action( 'init', 'wp_version_check' );" ) );
add_filter( 'pre_option_update_core', create_function( '$a', "return null;" ) );
Essentially it’s removing the function that checks for a new WordPress version so you don’t need to edit the core WordPress .php files. Using this plugin will NOT affect your plugin upgrade messages which is great. It’s important to keep those updated as well especially with the latest 2.5 version of WordPress now out. Lots of plugin developers are upgrading their code to make sure it’s compliant with 2.5.
So download this new plugin if you’re like me and tired of seeing those WordPress upgrade messages.
Ready to super charge your blog? Check out our partners professional premium WordPress themes!
If you like this post then please consider subscribing to our eBlog Templates RSS feed. You can also subscribe by email and have new templates and articles sent directly to your inbox.
I haven’t tried this plugin yet, but I love it already. 🙂
@Andreas, yeah it’s a really handy plugin if you hate seeing that upgrade message. 😉 btw, nice work with all your WordPress themes. I hope to have some of your others converted into Blogger as well.
This plugin is not necessary.
Just edit the file /wp-admin/includes/update.php
Avoid to install many plugins if you want performance and security.
It is a very good plugin!
Thank you for this plugin. I’ve been scowering the internet for it. Great work.
Love the plugin!
Hi I would like to recommend you very useful rapidshare file search – rapidbeetle
You can find a lot of new movies, games and music there.
@Fase Network: Editing update.php is kinda useless unless you have no intention whatsoever of ever updating your wordpress installation. Each update will replace update.php and you’d have to repeat the process again.
I’ve been searching for this, Thanks David 🙂
Finally I’ve have found it. Thanks