額,我也不知道怎麼來說這個名稱,就是一般我們去推廣部落格給部落格評論很多人都是為了留下自己的網站連結。所以說也造成評論質量很差。當然這麼做也有點不方便回訪,我就算測試一段時間吧。
首先你進入網站主機空間控制面板 (如果還沒安裝 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"; 就行了。測試下發現評論員的連結都沒了··當然這個有好有壞,看自己的喜好來改。