Skip to content

Instantly share code, notes, and snippets.

@nickdavis
Last active June 29, 2022 11:04
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 nickdavis/331912a00252bced587c2ab7b4e669fe to your computer and use it in GitHub Desktop.
Save nickdavis/331912a00252bced587c2ab7b4e669fe to your computer and use it in GitHub Desktop.
Additional settings for wp-config.php (public version)
<?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