Skip to content

Instantly share code, notes, and snippets.

@pixelpylon
Created May 26, 2019 02:38
Show Gist options
  • Save pixelpylon/3656df7becbce046643697a35c71dbcb to your computer and use it in GitHub Desktop.
Save pixelpylon/3656df7becbce046643697a35c71dbcb to your computer and use it in GitHub Desktop.
wp db migration sql
UPDATE wp_options SET option_value = replace(option_value, 'http://old', 'http://new') WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE wp_posts SET post_content = replace(post_content, 'http://old', 'http://new');
UPDATE wp_postmeta SET meta_value = replace(meta_value,'http://old','http://new');
UPDATE wp_usermeta SET meta_value = replace(meta_value, 'http://old','http://new');
UPDATE wp_links SET link_url = replace(link_url, 'http://old','http://new');
UPDATE wp_comments SET comment_content = replace(comment_content , 'http://old','http://new');
UPDATE wp_posts SET post_content = replace(post_content, 'http://old', 'http://new');
UPDATE wp_links SET link_image = replace(link_image, 'http://old','http://new');
UPDATE wp_posts SET guid = replace(guid, 'http://old','http://new');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment