WordPress强化-文章内URL自动识别超链接并新窗口打开 亲测

/*新窗口打开*/
add_filter('the_content', 'make_clickable');
function autoblank($text) {
$return = str_replace('<a', '<a target="_blank"', $text);
return $return;
}
add_filter('the_content', 'autoblank');

相关文章