How to Add Nofollow to the More Tags in Wordpress Blogs

More Tag Nofollow Fix for Versions 2.1, 2.2 and 2.3
You need to make changes to the post template file in the WP includes folder. On line 124 you will see the following line of code:
$output .= ‘ <a href=”‘. get_permalink() . “#more-$id\” class=\”more-link\”>$more_link_text</a>”;
You need to add the nofollow tag just before the link text. Simply replace the existing line of code with this one:
$output .= ‘ <a href=”‘. get_permalink() . “#more-$id\” class=\”more-link\” rel=\”nofollow\”>$more_link_text</a>”;
Once you save the file all of your more tag links will be nofollowed.
I do not think that this will make a huge amount of difference to your search engine rankings, but PageRank is precious and it could help prevent some of your posts being dropped from the search results.
