Skip to content

Instantly share code, notes, and snippets.

@n1k1c4
Created July 11, 2017 06:15
Show Gist options
  • Select an option

  • Save n1k1c4/667644f9e164475fca19a08e42115a8c to your computer and use it in GitHub Desktop.

Select an option

Save n1k1c4/667644f9e164475fca19a08e42115a8c to your computer and use it in GitHub Desktop.

Revisions

  1. n1k1c4 created this gist Jul 11, 2017.
    6 changes: 6 additions & 0 deletions wp_replace_url.sql
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,6 @@
    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_posts SET guid = REPLACE (guid, 'http://old', 'http://new');
    UPDATE wp_comments SET comment_content = REPLACE (comment_content, 'http://old', 'http://new');
    UPDATE wp_comments SET comment_author_url = REPLACE (comment_author_url, 'http://old', 'http://new');