Return to Snippet

Revision: 69897
at October 3, 2015 16:21 by telltec


Initial Code
/* enable wordpress auto updates */
define('WP_AUTO_UPDATE_CORE', true);
add_filter( 'auto_update_plugin', '__return_true' );
add_filter( 'auto_update_theme', '__return_true' );

Initial URL


Initial Description
Put this in your wp-config.php
Enables automatic WP core, theme and plugin updates.

Initial Title
Enable all automatic Wordpress Updates

Initial Tags


Initial Language
PHP