WordPress: nofollow aus allen Beiträgen entfernen

Wer die Funkion nofollow aus allen Beiträgen in WordPress entfernen lassen möchte, der muss nur diesen Codeschnipsel in die functions.php einfügen:

function remove_nofollow ($ string) (
$ String = str_ireplace ('rel = "nofollow"','', $ string);
return $ string;
)
add_filter ('the_content', 'remove_nofollow');

via digwp.com

Ähnliche Artikel: