Skip to content

Instantly share code, notes, and snippets.

@chrisvanpatten
Created March 26, 2012 01:32
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 chrisvanpatten/2202106 to your computer and use it in GitHub Desktop.
Save chrisvanpatten/2202106 to your computer and use it in GitHub Desktop.
WordPress staging
<?php
//...
$urlParts = explode('.', $_SERVER['HTTP_HOST']);
if ($urlParts[0] == 'staging') {
// Do some stuff if we're on staging
define('WB_DEBUG', true);
// I want to rewrite the site_url and home_url here
}
//...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment