Forums
-
- Forum
- Posts
-
- Installation
- 28,539
- Troubleshooting
- 62,922
- Themes
- 10,446
- Plugins
- 15,400
- Requests & Feedback
- 15,014
- Showcase
- 3,256
-
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');