额,我也不知道怎么来说这个名称,就是一般我们去推广博客给博客评论很多人都是为了留下自己的网站链接。所以说也造成评论质量很差。当然这么做也有点不方便回访,我就算测试一段时间吧。
首先你进入网站主机空间控制面板 (如果还没安装 wp 就不用了),依次打开 wp-includes——comment-template.php 。然后打开 comment-template 找到这一段代码
function get_comment_author_link( $comment_ID = 0 ) {
/** @todo Only call these functions when they are needed. Include in if. 。。 else blocks */
$url = get_comment_author_url( $comment_ID );
$author = get_comment_author( $comment_ID );
if ( empty( $url ) || 'http://'== $url )
$return = $author;
else
$return = "$author";(已经改好了的)
就是把红色这句原来的代码改成 $return = "$author"; 就行了。测试下发现评论员的链接都没了··当然这个有好有坏,看自己的喜好来改。