Skip to content

Instantly share code, notes, and snippets.

@enru
Created September 4, 2015 08:24
Show Gist options
  • Select an option

  • Save enru/fcd816521e695647746d to your computer and use it in GitHub Desktop.

Select an option

Save enru/fcd816521e695647746d to your computer and use it in GitHub Desktop.
Update WordPress site URL
UPDATE wp_posts SET post_content = replace(post_content, 'http://www.foo.com', 'http://www.bar.com');
UPDATE wp_posts SET guid = replace(guid, 'http://www.foo.com', 'http://www.bar.com');
UPDATE wp_postmeta SET meta_value = replace(meta_value, 'http://www.foo.com', 'http://www.bar.com');
UPDATE wp_options SET option_value = 'http://www.bar.com' WHERE option_name = 'siteurl';
UPDATE wp_options SET option_value = 'http://www.bar.com' WHERE option_name = 'home';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment