Updates

How we can Disable auto WordPress updates?1 min read

November 26, 2020 < 1 min read

author:

Array

How we can Disable auto WordPress updates?1 min read

Reading Time: < 1 minute

Add below code in wp-config.php . This will disable all automatic WordPress core updates.

define( 'WP_AUTO_UPDATE_CORE', false );

Disable automatic plugin updates by adding below code in function.php. If you need to do for specific plugin. you can add this filter to the respective plugin file

add_filter( 'auto_update_plugin', '__return_false' );

Disable theme updates. add in theme function.php

add_filter( 'auto_update_theme', '__return_false' );
Array
0 0 votes
Article Rating
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x