WordPress如何实现所有新链接新窗口打开?
WordPress如何实现所有新链接新窗口打开?今天小编为大家分享两种方法。 1.在主题中的functions…
WordPress如何实现所有新链接新窗口打开?今天小编为大家分享两种方法。
1.在主题中的functions.php中添加功能代码
使用方法:打开wordpress后台找到主题——外观——主题编辑器——functions.php文件,将下方的代码粘贴到functions.php的最末端即可。
//文章页所有连接新窗口打开:文章链接:https://wordpressworlds.com/post_blank_links.html
function autoblank($text) {
$return = str_replace(‘<a’, ‘<a target=”_blank”‘, $text);
return $return;
}
add_filter(‘the_content’, ‘autoblank’);
2.在hearder.php文件中添加代码实现全站链接新窗口打开
使用方法:将以下代码粘贴到WordPress主题的head文件中的最后一个</head>的前面即可。
<base target=”_blank”>
类别:WordPress入门、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
还没有任何评论,赶紧来占个楼吧!