Reputation: 47
How do we stop Wordpress auto updates with auto updates theme design and functionality for distributed.
Upvotes: 1
Views: 356
Reputation: 79
If you are after a plugin and not comfortable with editing php files, then I recommend https://wordpress.org/plugins/disable-wordpress-updates/ . However I strongly advise that you keep automatic updates turned on, as sometimes they have important security fixes.
Upvotes: 1
Reputation: 94
you can disable automatic updates in WordPress by adding this line of code in your wp-config.php file:
define( 'WP_AUTO_UPDATE_CORE', false );
This will disable all automatic WordPress updates.
visit wpbeginner
Upvotes: 1