Last active
June 15, 2017 02:41
-
-
Save ajdumanhug/dda53f4b663d4c4df1750c20901d5f8b to your computer and use it in GitHub Desktop.
Enable Auto Core Update
This file contains 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
// Turn on core major versions | |
add_filter( 'allow_major_auto_core_updates', '__return_true' ); | |
// Turn on core minor versions | |
add_filter( 'allow_minor_auto_core_updates', '__return_true' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment