Created
January 8, 2019 10:36
-
-
Save siriokun/7bbca370bf205fc342eb14331e3cba03 to your computer and use it in GitHub Desktop.
Change WordPress links from live site to localhost
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
// Change home_url to localhost | |
update wp_options set option_value = | |
replace(option_value,'http://yourlivesite.tld','http://localhost/wp'); | |
// Change links in content | |
update wp_posts set post_content = | |
replace(post_content,'http://yourlivesite.tld','http://localhost/wp'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment