Get your server issues fixed by our experts for a price starting at just 25 USD/Hour. Click here to register and open a ticket with us now!

Author Topic: Disabling WordPress Automatic Updates  (Read 3153 times)

0 Members and 1 Guest are viewing this topic.

sajugovind

  • Guest
Disabling WordPress Automatic Updates
« on: May 17, 2014, 10:17:12 pm »

WordPress 3.7 is out and there are some cool new features in it. This release is mainly focused on improving security and stability of WordPress. One such improvement is the auto update system. Since 3.7, a typical WordPress install will now be able to automatically update itself when there is a new minor/security release available without any user input. For example, it will automatically update itself from WordPress 3.7 to 3.7.1. Auto updates are not enabled by default for major releases like 3.7.1 to 3.8. In this article, we will show you how to disable automatic updates in WordPress.


Why and Who Would Want to Disable Automatic Updates

On managed WordPress hosting, the host usually takes care of automatic updates for users. But now with WordPress 3.7 this functionality will be available to all WordPress users. The problem is that some of them may not be ready for it yet. Despite warnings many users make modifications to WordPress core which may not be compatible with automatic updates and could affect their WordPress sites.

There are also users who run WordPress for clients and have their own ways to update WordPress when a new version is available. Lastly, there are users who just want to do their updates manually and have more control over it. Please note that even though you can disable automatic updates, it is still highly recommended that you update your WordPress install to the latest version as soon as possible for better security.

Disabling WordPress Automatic Updates

Disabling automatic updates in WordPress is easy. Simply add this line of code in your wp-config.php file:

1   define( 'WP_AUTO_UPDATE_CORE', false );

This will disable the WordPress automatic updater, and you will still get notified when there is a new version available, so you can update at your own convenience.

Thank you,