Commentaire ajouter nofollow un lien spcifie ou tous les liens wordpress dans the_content

<?php
function example_all_links_nofollow( $content ){
        $content = str_replace( '<a href="', '<a rel="nofollow" href="', $content );
    return $content;
}
add_filter('the_content','example_all_links_nofollow');
?>
claude61340