Auto Updates Disabled….
-
I am a website developer and I manage many websites where I have disabled auto updates. However, the update to WordPress 6.5 was still done automatically. So this has led me to wonder what happened that caused this.
Some of the websites have this code in wp-config.php
define( 'AUTO_UPDATER_DISABLED', true );
While others have this code in wp-config.php;
define( 'WP_AUTO_UPDATE_CORE', 'minor' );
define( 'automatic_updater_disabled', true );
define( 'DISALLOW_FILE_EDIT', true );Do I understand correctly after reviewing this article over on Make.www.remarpro.com that changing
define( 'automatic_updater_disabled', true );
anddefine( 'AUTO_UPDATER_DISABLED', true );
todefine( 'auto_update_core', false);
will stop the sites I manage from auto updating in the future?
- The topic ‘Auto Updates Disabled….’ is closed to new replies.