最新方法:
在主题的 functions.php 的最后添加代码如下:
/**
* 2023,04,24 自动超链接
*/
add_filter('the_content', 'make_clickable');
function autoblank($text) {
$return = str_replace('<a', '<a target="_blank"', $text);
return $return;
}
add_filter('the_content', 'autoblank');