WordPress is a popular website platform. It helps many people create websites. One feature is automatic updates. Sometimes, you might want to turn off these updates. This article will show you how to do that.

Credit: www.wpbeginner.com
Why Disable Automatic Updates?
Automatic updates keep your site secure. They fix bugs and improve features. But, there are reasons to disable them:
- Custom changes: You might have custom code.
- Compatibility: Some plugins might not work after updates.
- Control: You might want full control over updates.
Steps to Disable Automatic Updates
Here are some simple steps to disable automatic updates. Follow them carefully.
Step 1: Backup Your Site
Before making changes, always backup your site. This ensures you can restore it if something goes wrong. Use a plugin like UpdraftPlus for backups.
Step 2: Access Your Wp-config.php File
The wp-config.php file is important. It contains your site settings. You need to edit this file.
To access it:
- Use an FTP client like FileZilla.
- Login to your hosting account.
- Navigate to your WordPress directory.
- Find the wp-config.php file.
- Download it to your computer.
Step 3: Edit The Wp-config.php File
Open the wp-config.php file with a text editor. You can use Notepad or Sublime Text. Find a place near the bottom of the file.
Add this line of code:
define('AUTOMATIC_UPDATER_DISABLED', true);
This code turns off automatic updates. Save the file and upload it back to your WordPress directory.
Step 4: Disable Plugin And Theme Updates
Sometimes, you also need to disable plugin and theme updates. Add these lines to the wp-config.php file:
define('WP_AUTO_UPDATE_CORE', false);
add_filter('auto_update_plugin', '__return_false');
add_filter('auto_update_theme', '__return_false');
Save the file and upload it again. This stops updates for plugins and themes too.
Use a Plugin to Disable Updates
If you don’t like editing files, use a plugin. There are plugins that disable updates for you.
Step 1: Install The Plugin
Go to your WordPress dashboard. Click on Plugins, then Add New. Search for Easy Updates Manager. Click Install Now and then Activate.
Step 2: Configure The Plugin
Once activated, go to Dashboard. Then click on Updates Options. You will see many settings. You can disable core updates, plugin updates, and theme updates. Choose the settings you want.
Check Your Site
After making changes, check your site. Make sure everything works. Visit different pages and test plugins. If something is wrong, restore your backup.

Credit: woorkup.com
Frequently Asked Questions
How Do I Stop Automatic Updates In WordPress?
To stop automatic updates, modify the wp-config. php file. Add a line of code.
Can I Disable Theme Updates In WordPress?
Yes, you can disable theme updates. Use a plugin like Easy Updates Manager.
Is Disabling Automatic Updates In WordPress Safe?
Yes, it’s safe if you manually update plugins and themes. Always test updates on a staging site first.
How Do I Disable Plugin Updates?
Use a plugin like Easy Updates Manager to disable plugin updates easily.
Conclusion
Disabling automatic updates can be useful. It gives you control over your site. Follow these steps carefully. Always remember to backup your site before making changes. Whether you choose to edit files or use a plugin, the choice is yours. Happy blogging!