I had to do a find and replace a string on all of the wordpress post. This can only be done via a MySQL query and won’t take more than a minute.
This is how it’s done. In the following example, I will be finding X and replacing it with Y
The string will find X in every single post and replace it with Y. This also works with phrases, URLs etc..
update wp_posts set post_content = replace(post_content, 'X', 'Y')
Last 5 posts by Nish Vamadevan
- OSPF Loopback Interface - December 17th, 2009
- Convert IPv4 into IPv6 - November 15th, 2009
- TCP Window Calculation - October 20th, 2009
- How to configure PPP Multilink - September 16th, 2009
- How to Configure Frame-Relay - September 15th, 2009
- IP helper-address Explained - August 18th, 2009