Skip to content

Instantly share code, notes, and snippets.

@tomhayes
Last active January 20, 2017 02:23
Show Gist options
  • Save tomhayes/f9a6a4590a53c2d57a09984f0d36e2a2 to your computer and use it in GitHub Desktop.
Save tomhayes/f9a6a4590a53c2d57a09984f0d36e2a2 to your computer and use it in GitHub Desktop.
Update WordPress domains for migrating site (SQL)
SET @oldsite='http://oldsite.com';
SET @newsite='http://newsite.com';
UPDATE wp_options SET option_value = replace(option_value, @oldsite, @newsite) WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE wp_posts SET post_content = replace(post_content, @oldsite, @newsite);
UPDATE wp_links SET link_url = replace(link_url, @oldsite, @newsite);
UPDATE wp_postmeta SET meta_value = replace(meta_value, @oldsite, @newsite);
/* only uncomment next line if you want all your current posts to post to RSS again as new */
#UPDATE wp_posts SET guid = replace(guid, @oldsite, @newsite);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment