Skip to content

Instantly share code, notes, and snippets.

@hmowais
Created January 17, 2023 11:22
Show Gist options
  • Save hmowais/b561e6b8530dcbe90a7359113a40010e to your computer and use it in GitHub Desktop.
Save hmowais/b561e6b8530dcbe90a7359113a40010e to your computer and use it in GitHub Desktop.
Plugins and Themes Updates OFF
<?php
// Update OFF
// Remove WP 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