Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: target _blank


_ck_
Participant

@_ck_

function bb_target_blank( $text ) {
$text = preg_replace('|<a (.+?)>|i', '<a $1 target="_blank">', $text);
return $text;
}
add_filter('post_text', 'bb_target_blank',255);

Skip to toolbar