wordpress评论者链接在新窗口中打开的方法

wordpress评论者链接在新窗口中打开的方法,第1张

wordpress="superseo">ss评论者链接在新窗口中打开的方法

Wordpress在这个对话框中点击评论者连接打开,客户体验不是特别好。介绍WordPress评论者连接在新页面打开的方式,解决方案如下。

查看WP-includes/comment-template.PHP文件


复制代码编码如下:
if(empty($URL)||'http://'=$URL)
$return=$author;
else
$return="<;ahref='$URL'rel='externalnofollow'class='URL'>。$author</a>;;
returnapply_filters('get_comment_author_link',$return);
}

给$返回值添加一个target='_blank'

复制代码如下:
if(empty($URL)||'http://'=$URL)
$return=$author;
else
$return="<;ahref='$URL'rel='externalnofollow'class='URL'target='_blank'>。$author</a>;;
returnapply_filters('get_comment_author_link',$return);
}

欢迎分享,转载请注明来源:内存溢出

原文地址:https://www.54852.com/zz/772492.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2022-05-03
下一篇2022-05-03

发表评论

登录后才能评论

评论列表(0条)

    保存