Home / Admin / Enable automatic updates for WordPress core, plugins, and themes
Duplicate Snippet

Embed Snippet on Your Site

Enable automatic updates for WordPress core, plugins, and themes

Code Preview
php
<?php
// Enable automatic updates for WordPress core, plugins, and themes
add_filter('automatic_updater_disabled', '__return_false');
add_filter('auto_update_core', '__return_true');
add_filter('auto_update_plugin', '__return_true');
add_filter('auto_update_theme', '__return_true');

Comments

Add a Comment