Skip to content

Instantly share code, notes, and snippets.

@softiconic
Last active December 2, 2023 18:53
Show Gist options
  • Save softiconic/531418e615b89d706dfeac4d6f703bbc to your computer and use it in GitHub Desktop.
Save softiconic/531418e615b89d706dfeac4d6f703bbc to your computer and use it in GitHub Desktop.
Deactivate automatic updates for WordPress core, themes, or plugins.
// disable core updates
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