Skip to content

Instantly share code, notes, and snippets.

@aaronsummers
Last active October 9, 2019 10:16
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 aaronsummers/3e5b17ecdf4654d502b959387ded0ff6 to your computer and use it in GitHub Desktop.
Save aaronsummers/3e5b17ecdf4654d502b959387ded0ff6 to your computer and use it in GitHub Desktop.
updating wordpress site url with SQL in phpMyAdmin
SET @FIND_URL = `old_url`;
SET @REPLACE_URL = `new_url`;
UPDATE wp_options SET option_value = replace(option_value, @FIND_URL, @REPLACE_URL) WHERE option_name = `home` OR option_name = `siteurl`;
UPDATE wp_posts SET guid = replace(guid, @FIND_URL, @REPLACE_URL);
UPDATE wp_posts SET post_content = replace(post_content, @FIND_URL, @REPLACE_URL);
UPDATE wp_postmeta SET meta_value = replace(meta_value, @FIND_URL, @REPLACE_URL);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment