Sandhiya Rao
Sandhiya Rao

Reputation: 47

How do we stop Wordpress auto updates

How do we stop Wordpress auto updates with auto updates theme design and functionality for distributed.

Upvotes: 1

Views: 356

Answers (2)

SakshamInABox
SakshamInABox

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

Ilove112
Ilove112

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

Related Questions