Created
September 24, 2014 00:14
-
-
Save michaelcurry/90cf637f0f72118d8e8a to your computer and use it in GitHub Desktop.
Change WordPress URL MySQL Query
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
SET @oldsite='http://oldsite.com'; | |
SET @newsite='http://newsite.com'; | |
UPDATE wp_options SET option_value = replace(option_value, @oldsite, @newsite) WHERE option_name = 'home' OR option_name = 'siteurl'; | |
UPDATE wp_posts SET post_content = replace(post_content, @oldsite, @newsite); | |
UPDATE wp_links SET link_url = replace(link_url, @oldsite, @newsite); | |
UPDATE wp_postmeta SET meta_value = replace(meta_value, @oldsite, @newsite); | |
UPDATE wp_posts SET guid = replace(guid, @oldsite, @newsite); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment