Skip to content

Instantly share code, notes, and snippets.

@leogopal
Created June 2, 2015 09:14
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 leogopal/bc5a67cc0393017e6e4a to your computer and use it in GitHub Desktop.
Save leogopal/bc5a67cc0393017e6e4a to your computer and use it in GitHub Desktop.
wp-config for dev and live environments
<?php
switch( $_SERVER['SERVER_NAME'])
{
// Dev
case 'dev.example.com':
define('WP_DEBUG', true);
define('WP_DEBUG_LOG', true);
define('ENV', 'dev');
break;
// UAT
case 'uat.example.com':
define('WP_DEBUG', true);
define('WP_DEBUG_LOG', true);
define('WP_DEBUG_DISPLAY', false);
define('ENV', 'uat');
break;
// Live
case 'live.example.com':
define('WP_DEBUG', false);
define('ENV', 'live');
break;
} ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment