Skip to content

Instantly share code, notes, and snippets.

@SashaKolbasov
Last active August 28, 2018 03:52
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 SashaKolbasov/e538651f7b85af42d62e5392faff61d3 to your computer and use it in GitHub Desktop.
Save SashaKolbasov/e538651f7b85af42d62e5392faff61d3 to your computer and use it in GitHub Desktop.
WordPress transfer
UPDATE wp_options SET option_value = REPLACE(option_value, 'http://olddomain.ru', 'http://newdomain.ru') WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE wp_posts SET guid = REPLACE(guid, 'http://olddomain.ru','http://newdomain.ru');
UPDATE wp_posts SET post_content = REPLACE(post_content, 'http://olddomain.ru', 'http://newdomain.ru');
UPDATE wp_postmeta SET meta_value = REPLACE (meta_value, 'http://test.truemisha.ru','https://misha.blog');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment