Skip to content

Instantly share code, notes, and snippets.

@kloon
Created October 25, 2013 06:49
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save kloon/7150383 to your computer and use it in GitHub Desktop.
Save kloon/7150383 to your computer and use it in GitHub Desktop.
WordPress 3.7 Enable/Disable Automatic Updates
// Enable Automatic Updates for all updates
define( 'WP_AUTO_UPDATE_CORE', true );
// Disable Automatic Updates for all updates
define( 'WP_AUTO_UPDATE_CORE', false );
// Only allow Automatic Updates for minor updates
define( 'WP_AUTO_UPDATE_CORE', 'minor' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment