Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Add nofollow to links


_ck_
Participant

@_ck_

cordoval, make this into a plugin:

//add target=_blank to post links
function bb_target_blank( $text ) {
$text = preg_replace('|<a (.+?)>|i', '<a $1 target="_blank">', $text);
return $text;
}
add_filter('pre_post', 'bb_target_blank');

Skip to toolbar