Skip to content

Instantly share code, notes, and snippets.

@kevinvess
Last active June 22, 2018 13:20
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 kevinvess/7686488 to your computer and use it in GitHub Desktop.
Save kevinvess/7686488 to your computer and use it in GitHub Desktop.
This SQL statement will replace any instance of the site's current url with a new url in all the common locations of a WordPress database.
UPDATE wp_options SET option_value = replace(option_value, 'http://current-url.com', 'http://new-url.com') WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE wp_posts SET guid = replace(guid, 'http://current-url.com', 'http://new-url.com');
UPDATE wp_posts SET post_content = replace(post_content, 'http://current-url.com', 'http://new-url.com');
UPDATE wp_postmeta SET meta_value = replace(meta_value, 'http://current-url.com', 'http://new-url.com');
@kevinvess
Copy link
Author

Important: before trying, please back up your database and files. For help with updates, visit the Updating WordPress Codex page.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment