Created
December 14, 2015 14:18
-
-
Save leowebguy/5c90602bba87234e6c2c to your computer and use it in GitHub Desktop.
Remove core updates notice in WordPress
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function remove_core_updates(){ | |
global $wp_version;return(object) array('last_checked'=> time(),'version_checked'=> $wp_version,); | |
} | |
add_filter('pre_site_transient_update_core','remove_core_updates'); | |
add_filter('pre_site_transient_update_plugins','remove_core_updates'); | |
add_filter('pre_site_transient_update_themes','remove_core_updates'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment