Skip to content

Instantly share code, notes, and snippets.

@evadne
Created December 3, 2010 08:03
Show Gist options
  • Save evadne/726702 to your computer and use it in GitHub Desktop.
Save evadne/726702 to your computer and use it in GitHub Desktop.
SET @oldsite='http://monoceroi.com', @newsite='http://iridia.tw';
UPDATE wp_options SET option_value = replace(option_value, @oldsite, @newsite) WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE wp_posts SET guid = replace(guid, @oldsite, @newsite);
UPDATE wp_posts SET post_content = replace(post_content, @oldsite, @newsite);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment