Skip to content

Instantly share code, notes, and snippets.

@Tmeister
Created July 13, 2017 15:29
Show Gist options
  • Save Tmeister/ea992e91ca63040b63f33b0264c9066a to your computer and use it in GitHub Desktop.
Save Tmeister/ea992e91ca63040b63f33b0264c9066a to your computer and use it in GitHub Desktop.
Set the WP setting to the current server host
<?php
define('SP_REQUEST_URL', ($_SERVER['HTTPS'] ? 'https://' : 'http://') . $_SERVER['HTTP_HOST']);
define('WP_SITEURL', SP_REQUEST_URL);
define('WP_HOME', SP_REQUEST_URL);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment