Updating all the URLs and resources in the WordPress site after migrating to a new domain or migrating to a domain from IP address is a painstaking task. Luckily, there is an easy way!
In this tutorial, I will show you the easy way to update all URLs thanks to SQL commands. The first thing you need is access to PhpMyAdmin tool or direct shell access to the database server. Once you have the database accesses, you can follow the below-mentioned steps to update all domains/IP address in your posts, comments, etc. to the new domain address.
Find and update all the posts with old domain in the contents
The following SQL query lists all the posts that contain the old domain. This is only for seeing the posts that have the old domain.
SELECT * FROM wp_posts WHERE post_content LIKE '%YOUR_OLD_DOMAIN%'
Now, let’s replace all those old domain URLs with the new one with the following SQL command.
UPDATE wp_posts SET post_content = replace(post_content, 'YOUR_OLD_DOMAIN', 'YOUR_NEW_DOMAIN') WHERE post_content LIKE '%YOUR_OLD_DOMAIN%'
Find and update all the comments with old domain
Similar to what we have done with post content, we can replace the old domain in the comments too.The following SQL query lists all the comments that contain the old domain.
SELECT * FROM wp_comments WHERE comment_content LIKE '%YOUR_OLD_DOMAIN%'
Then to replace all those old domains in the comment, use the following SQL command
UPDATE wp_comments SET comment_content = replace(comment_content, 'YOUR_OLD_DOMAIN', 'YOUR_NEW_DOMAIN') WHERE comment_content LIKE '%YOUR_OLD_DOMAIN%'This should make all the URLs use your new domain.
… [Trackback]
[…] Read More Information here to that Topic: genuinecoder.com/how-to-update-wordpress-post-content-urls-in-bulk/ […]
… [Trackback]
[…] Info on that Topic: genuinecoder.com/how-to-update-wordpress-post-content-urls-in-bulk/ […]
… [Trackback]
[…] Find More to that Topic: genuinecoder.com/how-to-update-wordpress-post-content-urls-in-bulk/ […]
… [Trackback]
[…] Find More Info here to that Topic: genuinecoder.com/how-to-update-wordpress-post-content-urls-in-bulk/ […]
… [Trackback]
[…] Read More Info here on that Topic: genuinecoder.com/how-to-update-wordpress-post-content-urls-in-bulk/ […]
… [Trackback]
[…] Info on that Topic: genuinecoder.com/how-to-update-wordpress-post-content-urls-in-bulk/ […]
… [Trackback]
[…] Read More to that Topic: genuinecoder.com/how-to-update-wordpress-post-content-urls-in-bulk/ […]
… [Trackback]
[…] Read More on to that Topic: genuinecoder.com/how-to-update-wordpress-post-content-urls-in-bulk/ […]
… [Trackback]
[…] There you will find 6372 more Information on that Topic: genuinecoder.com/how-to-update-wordpress-post-content-urls-in-bulk/ […]
… [Trackback]
[…] Here you can find 27150 additional Information on that Topic: genuinecoder.com/how-to-update-wordpress-post-content-urls-in-bulk/ […]
… [Trackback]
[…] Read More here on that Topic: genuinecoder.com/how-to-update-wordpress-post-content-urls-in-bulk/ […]
… [Trackback]
[…] Find More on to that Topic: genuinecoder.com/how-to-update-wordpress-post-content-urls-in-bulk/ […]
… [Trackback]
[…] Here you can find 21359 more Information to that Topic: genuinecoder.com/how-to-update-wordpress-post-content-urls-in-bulk/ […]
… [Trackback]
[…] Here you can find 37555 more Info on that Topic: genuinecoder.com/how-to-update-wordpress-post-content-urls-in-bulk/ […]
… [Trackback]
[…] Read More Information here to that Topic: genuinecoder.com/how-to-update-wordpress-post-content-urls-in-bulk/ […]
… [Trackback]
[…] Information to that Topic: genuinecoder.com/how-to-update-wordpress-post-content-urls-in-bulk/ […]
… [Trackback]
[…] Find More on that Topic: genuinecoder.com/how-to-update-wordpress-post-content-urls-in-bulk/ […]
… [Trackback]
[…] Info to that Topic: genuinecoder.com/how-to-update-wordpress-post-content-urls-in-bulk/ […]
… [Trackback]
[…] Find More on that Topic: genuinecoder.com/how-to-update-wordpress-post-content-urls-in-bulk/ […]
… [Trackback]
[…] Info on that Topic: genuinecoder.com/how-to-update-wordpress-post-content-urls-in-bulk/ […]
… [Trackback]
[…] There you will find 90249 more Info to that Topic: genuinecoder.com/how-to-update-wordpress-post-content-urls-in-bulk/ […]
… [Trackback]
[…] Find More Information here on that Topic: genuinecoder.com/how-to-update-wordpress-post-content-urls-in-bulk/ […]
… [Trackback]
[…] Find More on to that Topic: genuinecoder.com/how-to-update-wordpress-post-content-urls-in-bulk/ […]
… [Trackback]
[…] Information to that Topic: genuinecoder.com/how-to-update-wordpress-post-content-urls-in-bulk/ […]
… [Trackback]
[…] Info on that Topic: genuinecoder.com/how-to-update-wordpress-post-content-urls-in-bulk/ […]
… [Trackback]
[…] Read More on on that Topic: genuinecoder.com/how-to-update-wordpress-post-content-urls-in-bulk/ […]
… [Trackback]
[…] Here you can find 14164 more Info on that Topic: genuinecoder.com/how-to-update-wordpress-post-content-urls-in-bulk/ […]
… [Trackback]
[…] Find More Information here to that Topic: genuinecoder.com/how-to-update-wordpress-post-content-urls-in-bulk/ […]
… [Trackback]
[…] There you can find 87923 more Info on that Topic: genuinecoder.com/how-to-update-wordpress-post-content-urls-in-bulk/ […]
… [Trackback]
[…] Information on that Topic: genuinecoder.com/how-to-update-wordpress-post-content-urls-in-bulk/ […]
… [Trackback]
[…] Read More here to that Topic: genuinecoder.com/how-to-update-wordpress-post-content-urls-in-bulk/ […]