
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);
}
欢迎分享,转载请注明来源:内存溢出
微信扫一扫
支付宝扫一扫
评论列表(0条)