Created
March 6, 2012 21:49
-
-
Save adamcbrewer/1989147 to your computer and use it in GitHub Desktop.
WP: SQL to transfer domains
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
update wp_options set option_value = replace(option_value,'string_to_find','string_to_replace'); | |
update wp_posts set guid = replace(guid,'string_to_find','string_to_replace'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment