Enable Auto Update WordPress Plugins and Themes
Discover how to enable auto updates for WordPress plugins and themes with WPCodeBox. Add PHP snippets, save, and enjoy hassle-free updates!
Introduction
Instructions:
- Add a PHP snippet in WPCodebox
- Paste the code from below
- Save it once
- Enable it and save it again
Code Samples
This will enable automatic updates of plugins and themes.
add_filter("auto_update_plugin", "__return_true");
add_filter("auto_update_theme", "__return_true");
add_filter("allow_minor_auto_core_updates", "__return_true");