Forums
-
- Forum
- Posts
-
- Installation
- 28,380
- Troubleshooting
- 62,290
- Themes
- 10,391
- Plugins
- 15,313
- Requests & Feedback
- 14,932
- Showcase
- 3,252
-
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);