Skip to content

Instantly share code, notes, and snippets.

@VernonGrant
Last active November 18, 2018 12:13
Show Gist options
  • Select an option

  • Save VernonGrant/3fac3838d7e77558640c1d854fcc3b59 to your computer and use it in GitHub Desktop.

Select an option

Save VernonGrant/3fac3838d7e77558640c1d854fcc3b59 to your computer and use it in GitHub Desktop.
WordPress Development Config Constants
define( 'WP_DEBUG', false );
define( 'WP_DEBUG_DISPLAY', false );
define( 'WP_DEBUG_LOG', true );
define( 'DEV_SERVER', 'http://' . $_SERVER['HTTP_HOST'] );
define( 'WP_HOME', DEV_SERVER );
define( 'WP_SITEURL', DEV_SERVER );
define( 'WP_CONTENT_URL', DEV_SERVER .'/wp-content/' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment