Re: target _blank
Great idea!
I’ve applied this way and works fine …
<?php
/*
Plugin Name: Target Blank
Plugin URI: https://bbpress.org/forums/topic/target-_blank
Description: Abre los enlaces del foro en nueva ventana. Nada que configurar, lo activas y funciona. Creado desde una idea de _ck_.
*/
function bb_target_blank( $text ) {
$text = preg_replace('||i', '', $text);
return $text;
}
add_filter('post_text', 'bb_target_blank',255);
?>
Thanks _ck_