Skip to content

Instantly share code, notes, and snippets.

@DarioBF
Created February 2, 2018 11:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DarioBF/dbc26aae46b940ce02b08f11c245a08a to your computer and use it in GitHub Desktop.
Save DarioBF/dbc26aae46b940ce02b08f11c245a08a to your computer and use it in GitHub Desktop.
UPDATE wp_options SET option_value = replace(option_value, 'http://site-to-change.com', 'http://127.0.0.1/site-changed') WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE wp_posts SET guid = REPLACE (guid, 'http://site-to-change.com', 'http://127.0.0.1/site-changed');
UPDATE wp_posts SET post_content = REPLACE (post_content, 'http://site-to-change.com', 'http://127.0.0.1/site-changed');
UPDATE wp_postmeta SET meta_value = REPLACE (meta_value, 'http://site-to-change.com', 'http://127.0.0.1/site-changed');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment