原文:https://liyuans.com/2018/05/newtab-to-open-links.html
- 第一种方法
在编辑文章中的文字链接时可以点击右侧的“链接选项”按钮,在弹出的“插入或编辑链接”对话框中选中“在新标签页中打开链接”即可。
- 方法2
每次都手动设置在新标签页中打开链接比较费事,可以直接通过代码来实现一劳永逸。在WordPress主题的 functions.php 的最后一个 ?> 前添加下面的代码即可:
function autoblank($text) {
$return = str_replace('<a', '<a target="_blank"', $text);
return $return;
}
add_filter('the_content', 'autoblank');