Here's a very simple PHP function that will parse text and create links that will open in a new window.
1
<?php
2
function beliefmedia_link_window($text) {
3
$text = preg_replace('/<a (. ?)>/i', "<a target='_blank' rel="external noopener noreferrer">", $text);
4
return $text;
5
}
6
7
$content = '<a href="http://www.beliefmedia.com/">This link</a> will open in a new window';
8
echo beliefmedia_link_window($content);