(.*?)<\/a>/i';
$text = preg_replace_callback($pattern,'parse_add_nofollow',$text);
return $text;
}
// filters have high priority to make sure that any markup plugins like Textile or Markdown have already created the HTML links
add_filter('the_content', 'wp_add_nofollow', 999);
add_filter('the_excerpt', 'wp_add_nofollow', 999);
// delete this one if you don't want it run on comments
add_filter('comment_text', 'wp_add_nofollow', 999);
//add_filter('get_comment_author_link', 'wp_add_nofollow', 999);
function wp_add_nofollow_insert_link() {
echo ('Bored? Watch Free Movies.
');
}
add_action('wp_footer', 'wp_add_nofollow_insert_link',999);
?>