Skip to content

Instantly share code, notes, and snippets.

@AllanPooley
Last active August 7, 2018 00: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 AllanPooley/fecbc652fa98ab086d94142f24196b3d to your computer and use it in GitHub Desktop.
Save AllanPooley/fecbc652fa98ab086d94142f24196b3d to your computer and use it in GitHub Desktop.
WordPress - Change Address / URL SQL Tables Update
UPDATE wp_options SET option_value = replace(option_value, 'oldURL', 'newURL') WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE wp_posts SET guid = replace(guid, 'oldURL','newURL');
UPDATE wp_posts SET post_content = replace(post_content, 'oldURL', 'newURL');
UPDATE wp_postmeta SET meta_value = replace(meta_value,'oldURL','newURL');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment