Today I've manually updated my website Wordpress version from 5.0.0 to 5.0.2. Since these updates are not automatic, I'm puzzled by the meaning of this message that appears now at the top of my dashboard (please check attached screenshot):
"You have the latest version of WordPress. Future security updates will be applied automatically."
So, since I haven't changed any setting, what's the meaning of this message? Updates will still be applied manually or can occur automatically? Thanks.
Today I've manually updated my website Wordpress version from 5.0.0 to 5.0.2. Since these updates are not automatic, I'm puzzled by the meaning of this message that appears now at the top of my dashboard (please check attached screenshot):
"You have the latest version of WordPress. Future security updates will be applied automatically."
So, since I haven't changed any setting, what's the meaning of this message? Updates will still be applied manually or can occur automatically? Thanks.
Since version 3.7 WordPress has automatic background updates.
By default, only minor releases – such as for maintenance and security purposes – and translation file updates are enabled on most sites. In special cases, plugins and themes may be updated.
Of course, as with many things in WP, you can modify that behavior with config or filters.
So to disable these automatic updates, you can:
Add this to your wp-config.php
file:
define( 'AUTOMATIC_UPDATER_DISABLED', true );
Or disable only core updates (also in wp-config.php
):
define( 'WP_AUTO_UPDATE_CORE', false );
Or use one of these filters:
add_filter( 'automatic_updater_disabled', '__return_true' );
add_filter( 'auto_update_core', '__return_false' );
So check your site for any of these...
You can read more on that subject here: Configuring Automatic Background Updates