This tutorial requested by wordpressschool, By the way for all other user, please consider use request section so we can eliminated spam :D.
There is simple way for disable Wordpress Core Update Notification Message without plugins, Just copying this code on your functions.php
add_action( 'init', create_function( '$a', "remove_action( 'init', 'wp_version_check' );" ), 2 );
add_filter( 'pre_option_update_core', create_function( '$a', "return null;" ) );# 2.8 to 3.0:
remove_action( 'wp_version_check', 'wp_version_check' );
remove_action( 'admin_init', '_maybe_update_core' );
add_filter( 'pre_transient_update_core', create_function( '$a', "return null;" ) );# 3.0:
add_filter( 'pre_site_transient_update_core', create_function( '$a', "return null;" ) );
Thanks,
radikal zen











Experience:2 Comments
Thanks for Considering my request. Henceforth I will request any article using “Request Section”.
Thanks.
Experience:22 Comments
@worpressschool
You’re welcome, Glad if our simple tutorial helping you :)
[...] Read this article: Disable Wordpress Core Update Notification Message without plugins @ Tutorial – Talking about … [...]