Site icon moneyslow.com

WordPress: 设置文章中链接默认在新窗口中打开

wordpress

wordpress中如何自定义链接为新窗口

最新方法:

在WordPress主题的 functions.php 的最后添加下面的代码即可:

function autoblank($text) {
$return = str_replace('<a', '<a target="_blank"', $text);
return $return;
}
add_filter('the_content', 'autoblank');

Exit mobile version