• Home

How to Enable/Disable All WordPress Automatic Updates

We Design Brands Experiences And Interfaces

How to Enable/Disable All WordPress Automatic Updates

Disable WordPress automatic updates

Add below code on wp-config.php file on root

define( 'WP_AUTO_UPDATE_CORE', false );

Enable WordPress automatic updates

Add below code on wp-config.php file on root

define('WP_AUTO_UPDATE_CORE', true);

Disable Plugin & Theme Updates

Add below code on functions.php file on your parent/child theme

add_filter( 'auto_update_plugin', '__return_false' ); add_filter( 'auto_update_theme', '__return_false' );

Enable Plugin & Theme Updates

Add below code on functions.php file on your parent/child theme

add_filter( 'auto_update_plugin', '__return_true' ); add_filter( 'auto_update_theme', '__return_true' ); Reference : https://codex.wordpress.org/Configuring_Automatic_Background_Updates

0 Comments

Recent Post
Creative 4 Divi Modules Design And Footer Style

September 16, 2020

Another 5 Creative Service Designs Using Divi Module with stunning hover effects and 8 Awesome Footer Designs Using Divi Module

February 18, 2020

How to Create Creative Person or Team Design Using Divi Module

February 11, 2020

Services
How to Create Creative Service Designs Using Divi Module

February 3, 2020