Skip to content

Instantly share code, notes, and snippets.

@amitmojumder
Created December 11, 2014 19:05
Show Gist options
  • Save amitmojumder/40a50273cedac40427e3 to your computer and use it in GitHub Desktop.
Save amitmojumder/40a50273cedac40427e3 to your computer and use it in GitHub Desktop.
Wordpress function.php snippets
// Disable all update nag
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