This site is getting rebuilt from scratch. Watch this space.

Disable all WordPress automatic updates

Want to disable automatic WordPress core, plugin, and theme updates to make sure your website doesn't break after a new update? Here's how!

Simply copy and paste the snippet below into your functions.php file of your child theme:

// Disable plugin updates
add_filter('auto_update_plugin', '__return_false');

// Disable theme updates
add_filter('auto_update_theme', '__return_false');

// Disable all core updates
add_filter('auto_update_core', '__return_false');
Back to blog