Hello, Is their a plugin or any way to change the links in my post from No-Follow to Do-Follow (Or Default). I have like 100 + posts which have links to sites which are No-Follow Links I want to change them to Do-Follow Links.. Kindly Help. Thanks, Worms11
Well, this could be done by a single SQL query. You can do that in your phpMyAdmin or by inserting a line of code into your template for example. http://www.mydigitallife.info/how-to-find-and-replace-text-in-mysql-database-using-sql/
works only for Comments. Thanks though.. Well, Didnt really understand how it works. Still trying to figure out.
This query should delete the rel="nofollow" parameter (with a space before it) from links in all your posts. It worked fine for me, but I recommend you creating a database backup first before executing it. UPDATE wp_posts SET post_content = replace(post_content, ' rel="nofollow"', '') Code (markup):