Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save johndiego/a0a06236b2adb467d00b502f76e672f9 to your computer and use it in GitHub Desktop.
Save johndiego/a0a06236b2adb467d00b502f76e672f9 to your computer and use it in GitHub Desktop.
Wordpress : Change URL in all site (Options, GUID, Post content and meta values)
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