WordPress Version: 5.1
/**
* Adds element attributes to open links in new tabs.
*
* @since 0.71
* @deprecated 4.5.0
*
* @param string $text Content to replace links to open in a new tab.
* @return string Content that has filtered links.
*/
function popuplinks($text)
{
_deprecated_function(__FUNCTION__, '4.5.0');
$text = preg_replace('/<a (.+?)>/i', "<a \$1 target='_blank' rel='external'>", $text);
return $text;
}