首先你进入网站主机空间控制面板(如果还没安装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”;就行了。测试下发现评论员的链接都没了··当然这个有好有坏,看自己的喜好来改。