1. 改变所用的主题,增加“authcomment”样式

编辑样式表文件 style.css,在接近底部的位置添加以下代码:

.authcomment {
background-color: #B3FFCC !important;
}

2. 编辑主题中的comments.php文件,添加一小段代码

找到comments.php文件中类似下面的这部分代码:

<li class="<?php echo $oddcomment; ?>" id="comment…

把这段代码改成以下的样子(注意全角和半角引号)

<li class=”<?php
/* Only use the authcomment class from style.css if the user_id is 1 (admin) */
if (1 == $comment->user_id)
$oddcomment = “authcomment”;
echo $oddcomment;
?>” id=”comment…

现在作者的评论和其他评论可以明显的区分开来