Skip to content

Instantly share code, notes, and snippets.

@colorful-tones
Created June 11, 2013 14:49
Show Gist options
  • Save colorful-tones/5757496 to your computer and use it in GitHub Desktop.
Save colorful-tones/5757496 to your computer and use it in GitHub Desktop.
Update URLs in WordPress database when migrating from dev to production. One way of doing it at least ;)
UPDATE `wp_posts` SET guid = REPLACE(guid, 'http://YOURSITE.sites.mannixmarketing.com', 'http://www.CLIENTSITE.com');
UPDATE `wp_posts` SET post_content = REPLACE(post_content, 'http://YOURSITE.sites.mannixmarketing.com', 'http://www.CLIENTSITE.com');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment