Home » Wordpress » How to disable the WordPress Update Notice

Here is wordpress php function code to Disable the WordPress Update Notice from wordpress backend.

add_filter( 'pre_site_transient_update_core', create_function( '$a', "return null;" ) );

Simply add that to your functions.php file and click save and the notices will disappear. :)

Source: wp-snippets.com

Array ( [0] => Wordpress, Wordpress Tip and Tricks )