Skip to content

Instantly share code, notes, and snippets.

@enru
Created October 7, 2014 12:45
Show Gist options
  • Select an option

  • Save enru/387e821f6da91c2cfe8f to your computer and use it in GitHub Desktop.

Select an option

Save enru/387e821f6da91c2cfe8f to your computer and use it in GitHub Desktop.
wp site url update
UPDATE wp_posts SET post_content = replace(post_content, 'http://ONE', 'http://TWO');
UPDATE wp_posts SET guid = replace(guid, 'http://ONE', 'http://TWO');
UPDATE wp_postmeta SET meta_value = replace(meta_value, 'http://ONE', 'http://TWO');
UPDATE wp_options SET option_value = 'http://TWO' WHERE option_name = 'siteurl';
UPDATE wp_options SET option_value = 'http://TWO' WHERE option_name = 'home';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment