<?php
function example_link_nofollow( $content ) {
$url ='http://example.com';
$content = str_replace( '<a href="'.$url.'', '<a rel="nofollow" href="'.$url.'', $content );
return $content;
}
add_filter('the_content','example_link_nofollow');
?>
<?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');
?>