Skip to content

Instantly share code, notes, and snippets.

@chancesmith
Last active October 26, 2016 19:41
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 chancesmith/5b1b42ea32bac3dcc5ac9580fc21dd65 to your computer and use it in GitHub Desktop.
Save chancesmith/5b1b42ea32bac3dcc5ac9580fc21dd65 to your computer and use it in GitHub Desktop.
local wordpress developement URL
// source: http://mardell.me/blog/how-to-use-a-single-wordpress-config-for-local-and-remote-environments/
/////
if ($_SERVER['SERVER_NAME'] === "blog.dev") {
// test site
define( 'WP_SITEURL', 'http://blog.dev' );
define( 'WP_HOME', 'http://blog.dev' );
} else {
// live site
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment