
Disabling Wordpress Automatic Updates
Did you know that your WordPress site automatically updates itself? Depending on if you’re running the standard or development version, your site may be updated several times a day. Automatic updates are great to conveniently fix problems but they can also break things at extremely inconvenient times. To completely turn off automatic updating in WordPress, add the following to your wp-config.php file and then restart your web services:
1 2 |
/* disable all Wordpress automatic updates */ define( 'AUTOMATIC_UPDATER_DISABLED', true ); |
More info on controlling automatic updates.