Last active
September 27, 2016 21:17
-
-
Save ingozoell/07f38bf428f0a2a9f364e01132eb2d49 to your computer and use it in GitHub Desktop.
Disables all WP core updates
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Disables all core updates | |
* http://make.wordpress.org/core/2013/10/25/the-definitive-guide-to-disabling-auto-updates-in-wordpress-3-7/ | |
*/ | |
define( 'WP_AUTO_UPDATE_CORE', false ); | |
/* | |
* Disable automatic WordPress Updates | |
* https://www.siteground.com/tutorials/wordpress/auto-update.htm | |
* | |
*/ | |
define( 'AUTOMATIC_UPDATER_DISABLED', true ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment