Home » Wordpress » How to disable wordpress update notification

here is code to disable wordpress backend update notification. put this into your current theme function.php file

add_action('admin_menu','wphidenag');
function wphidenag() {
remove_action( 'admin_notices', 'update_nag', 3 );
}

Incoming search terms:

Array ( [0] => Wordpress )