How to hide the Please update message from wordpress admin panel

Sponsors

When new wordpress version came. we got message in wordpress admin panel as follows:

WordPress ….. is available! Please update.

Many people does not want to see that message or hide this message from wordpress admin panel

Just Open functions.php file from wordpres theme and put following code in that file:


add_action('admin_menu','hide_update_message');
 function hide_update_message()
 {
 remove_action( 'admin_notices', 'update_nag', 3 );
remove_filter( 'update_footer', 'core_update_footer' );

}

This code will run in wordpress and wordpressMU also.

You may like following Articles!

One thought on “How to hide the Please update message from wordpress admin panel

  1. Pingback: WordPress Arena: A Blog for WordPress Developers, Designers and Blogger

Leave a Reply

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>