額,我也不知道怎麼來説這個名稱,就是一般我們去推廣博客給博客評論很多人都是為了留下自己的網站鏈接。所以説也造成評論質量很差。當然這麼做也有點不方便回訪,我就算測試一段時間吧。

首先你進入網站主機空間控制面板 (如果還沒安裝 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"; 就行了。測試下發現評論員的鏈接都沒了··當然這個有好有壞,看自己的喜好來改。