Skip to content

Instantly share code, notes, and snippets.

@mohsinworld
Last active November 9, 2022 10:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mohsinworld/a57414d90630d5f1473166637fdd813b to your computer and use it in GitHub Desktop.
Save mohsinworld/a57414d90630d5f1473166637fdd813b to your computer and use it in GitHub Desktop.
Need to add this code into functions.php file inside the themes folder
// Disable core auto-updates
add_filter( 'auto_update_core', '__return_false' );
// Disable auto-updates for plugins.
add_filter( 'auto_update_plugin', '__return_false' );
// Disable auto-updates for themes.
add_filter( 'auto_update_theme', '__return_false' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment