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