WordPress 3.7 was just recently released and with it comes a new feature that allows WordPress to automatically update itself without any user input. The feature is there to help improve security and provide stability for websites using WordPress. WordPress will only automatically update itself when there’s a minor update / security release available. For example, it will automatically update to version 3.7.1 minor release.
For major upgrade like 3.8, users will have to approve and manually upgrade. The feature is great, but what if you don’t want it? Maybe you want to make sure all updates were approved or you might want to disable some plugins before upgrading. Well, this brief tutorial is going to show you how to disable the automatic updater starting with WordPress 3.7.
It is highly recommend that your upgrade WordPress as soon as possible when new updates are available. However, you’re also encouraged to backup and prepare your sites before upgrading WordPress. For those using Managed hosting, this is usually done for them. They don’t have to worry about updating WordPress themselves. If you manage your site yourself, then this is for you.
To get started with disabling WordPress automatic updater, simple go to your web root directory and open wp-config.php file. Right before the last line, add this code and save it.
define( 'AUTOMATIC_UPDATER_DISABLED', true );
Doing this will disable WordPress automatic updater but you’ll still be notified when there are updates available. You can then manually upgrade at your own convenience.
If you’re using Cpanel, you should open File Manager / Explorer and open the root folder. Then look for wp-config.php file. Next, edit and and at line above and save it. That’s it!
Enjoy!
Frequently Asked Questions
How to disable automatic updater in Wordpress 3.7?
To disable the automatic updater in Wordpress 3.7, you need to add define( 'AUTOMATIC_UPDATER_DISABLED', true ); in the wp-config.php file located in your web root directory.
What does the AUTOMATIC_UPDATER_DISABLED code do in Wordpress?
The AUTOMATIC_UPDATER_DISABLED code in Wordpress prevents automatic updates, ensuring that you are notified of updates but can manually upgrade at your preferred time.
Can I still receive update notifications after disabling automatic updater in Wordpress 3.7?
Yes, even after disabling the automatic updater in Wordpress 3.7, you will still receive notifications when updates are available, allowing you to manually upgrade.
How can I manually upgrade Wordpress after disabling automatic updates?
After disabling automatic updates in Wordpress, you can manually upgrade by accessing the Wordpress dashboard, clicking on the update notification, and following the on-screen instructions.
Should I backup my site before upgrading Wordpress?
Yes, it is highly recommended to backup your site before upgrading Wordpress to prevent any data loss. This ensures that you can restore your site if any issues occur during the upgrade process.
What should Managed hosting users do regarding Wordpress updates?
Managed hosting users typically have Wordpress updates handled for them automatically, so they don't need to worry about manually upgrading. The hosting provider takes care of the updates.
Where can I find the wp-config.php file in Wordpress?
You can find the wp-config.php file in Wordpress by accessing the root directory of your website. It is typically located in the main folder where your Wordpress installation is stored.
How can I edit the wp-config.php file in Cpanel to disable automatic updater?
To edit the wp-config.php file in Cpanel and disable the automatic updater, you can use the File Manager/Explorer to locate the file in the root folder. Add the necessary code and save the changes.