Last active
June 29, 2022 11:04
-
-
Save nickdavis/331912a00252bced587c2ab7b4e669fe to your computer and use it in GitHub Desktop.
Additional settings for wp-config.php (public version)
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
<?php | |
/** | |
* Debug. | |
*/ | |
define( 'WP_DEBUG', true ); | |
define( 'WP_DEBUG_DISPLAY', false ); | |
define( 'WP_DEBUG_LOG', true ); | |
/** | |
* Load remote images when local images not found. | |
* | |
* @url https://github.com/billerickson/BE-Media-from-Production | |
*/ | |
define( 'BE_MEDIA_FROM_PRODUCTION_URL', 'https://productionurl.com' ); | |
/** | |
* Define premium plugin licence keys. | |
*/ | |
define( 'ACF_PRO_LICENSE', 'Your licence key here' ); | |
define( 'FACETWP_LICENSE_KEY', 'Your licence key here' ); | |
define( 'GF_LICENSE_KEY', 'Your licence key here' ); | |
define( 'SEARCHWP_LICENSE_KEY', 'Your licence key here' ); | |
define( 'WPMDB_LICENCE', 'Your licence key here' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment