I was happy to see this plugin but it doesnt seem to work for me.
Here is the source of the activated plugin:
function szub_nofollow_tag($text) {
return str_replace('<a href=', '<a rel="nofollow" href=', $text);
}
add_filter('wp_list_cats', 'szub_nofollow_tag');
add_filter('wp_get_archives', 'szub_nofollow_tag');
?>
Here is how cats and archives are being generated:
<h3>Kategorien</h3>
<ul>
<?php wp_list_cats('show_count=1'); ?>
</ul>
</div>
<h3>Archiv</h3>
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>
… still they are follow.
Im using WordPress v2.5.1
any ideas? many thanks!