Skip to content

Instantly share code, notes, and snippets.

@michaelbonner
Last active August 29, 2015 14:07
Show Gist options
  • Save michaelbonner/71686bca6839f7bcdf6c to your computer and use it in GitHub Desktop.
Save michaelbonner/71686bca6839f7bcdf6c to your computer and use it in GitHub Desktop.
Wordpress queries to go live
update `prefix_posts` set `post_content` = replace(`post_content`, 'oldurl', 'newurl');
update `prefix_postmeta` set `meta_value` = replace(`meta_value`, 'oldurl', 'newurl');
update `prefix_options` set `option_value` = replace(`option_value`, 'oldurl', 'newurl');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment