Skip to content

Instantly share code, notes, and snippets.

@khoallaby
Last active March 18, 2017 18:05
Show Gist options
  • Save khoallaby/1f69a7da01eeb519ca175c5b702d2e61 to your computer and use it in GitHub Desktop.
Save khoallaby/1f69a7da01eeb519ca175c5b702d2e61 to your computer and use it in GitHub Desktop.
UPDATE wp_options SET option_value = replace(option_value, '//www.test.com', '//local.test') WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE wp_posts SET guid = replace(guid, '//www.test.com','//local.test');
UPDATE wp_posts SET post_content = replace(post_content, '//www.test.com', '//local.test');
UPDATE wp_postmeta SET meta_value = replace(meta_value,'//www.test.com','//local.test');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment