Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Open Links in new window


chrishajer
Participant

@chrishajer

Courtesy of _ck_ http://ckon.wordpress.com/2007/07/12/bbpress-plugin-bb-tweaks/

<?php
/*
Plugin Name: Target Blank
Description: append target="_blank" to all links
Plugin URI: http://ckon.wordpress.com/2007/07/12/bbpress-plugin-bb-tweaks/
Author: _ck_
Version: 0.04
*/
//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