欢迎访问服务器技术网-www.fuwuqijishu.com

快速实现WordPress站点所有链接新窗口打开

网站建设 fuwuqijishu 2年前 (2022-09-04) 47次浏览 0个评论 扫描二维码

如果我们没有特殊的插件和主题设置,在使用的WordPress程序架设的网站内容如果有内联和外部链接打开应该是在本窗口打开的。如果我们希望实现全部都信窗口打开,直接可以用一段小脚本加入到当前主题中实现。这样可以有效的防止跳转到外部页面跳出。

//所有页面都新窗口打开
function autoblank($text) {
$return = str_replace(‘<a’, ‘<a target=”_blank”‘, $text);
return $return;
}
add_filter(‘the_content’, ‘autoblank’);

将上面脚本代码添加到当前主题Functions.php页面中,这样全站刷新之后就可以所有页面链接都可以新窗口打开效果。

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2220.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900