服务器之家:专注于服务器技术及软件下载分享
分类导航

DEDECMS|帝国CMS|Discuz|PHPCMS|Wordpress|ZBLOG|ECSHOP|苹果CMS|极致CMS|CMS系统|

服务器之家 - 建站程序 - Wordpress - wordpress评论者链接在新窗口中打开的方法

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

2019-09-17 14:27wordpress教程网 Wordpress

WordPress点击评论者链接是在本窗口内打开,用户体验不是特别好,介绍一下wordpress评论者链接在新窗口中打开的方法,解决方法如下

找到wp-includes/comment-template.php文件中

 

复制代码
代码如下:

if ( empty( $url ) || 'http://' == $url )
$return = $author;
else
$return = "<a href='$url' rel='external nofollow' class='url'>$author</a>";
return apply_filters('get_comment_author_link', $return);
}

 

给$return值上加个target=’_blank’
 

复制代码
代码如下:

if ( empty( $url ) || 'http://' == $url )
$return = $author;
else
$return = "<a href='$url' rel='external nofollow' class='url' target='_blank'>$author</a>";
return apply_filters('get_comment_author_link', $return);
}

延伸 · 阅读

精彩推荐