Select Page

Are you tired of always monitoring for updates on your site? Well here is a quick guide on how to automate WP core, themes or plugin updates

Open up your wp-config.php and at the bottom add these codes

define('WP_AUTO_UPDATE_CORE', true);
add_filter( 'auto_update_plugin', '__return_true' );
add_filter( 'auto_update_theme', '__return_true' );

Note: The auto update for the theme will only work if you are using a theme straight from WordPress repository if not then you will need to wait or update your theme manually

Pin It on Pinterest

Share This