Skip to content

Instantly share code, notes, and snippets.

@retlehs
Created April 14, 2015 02:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save retlehs/01477d70c01f50a87553 to your computer and use it in GitHub Desktop.
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
<?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