Created
April 14, 2015 02:03
-
-
Save retlehs/01477d70c01f50a87553 to your computer and use it in GitHub Desktop.
Enable test mode for Easy Digital Downloads if you're not on production
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
<?php | |
/** | |
* If not on production, enable test mode for Easy Digital Downloads | |
*/ | |
add_action('edd_is_test_mode', function() { | |
return WP_ENV !== 'production'; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment