由于之前一些小问题,侧栏带头像评论有问题,我就再次优化了下,这次直接采用把管理员的邮箱作为条件来判断的依据等,具体代码如下:
<article class="widget widget_newcomments"> <header> <h3> <i class="icon-bubbles"> </i> 最新评论 </h3> </header> <div class="main"> <ul> {php} $comments = $zbp->GetCommentList('*', array(array('=', 'comm_IsChecking', 0),array('<>', 'comm_Email','abc@126.com')), array('comm_PostTime' => 'DESC'), 5, null); {/php} {foreach $comments as $comment} <li> <a href="{$comment.Post.Url}#cmt{$comment.ID}" title="发表在 《{$article.Title}》 上的评论"> <i class="icon-arrow-right"> </i> <img alt="{$comment.Author.Name}" src="{$comment.Author.Avatar}" class="avatar photo" height="45" width="45"> {$comment.Author.Name}: </a> <br> <span> {php} $clpl = preg_replace('/[\r\n\s]+/', '', trim(SubStrUTF8(TransferHTML($comment->Content,'[nohtml]'),14)).''); {/php} {$clpl} </span> <br> </li> {/foreach} </ul> <div class="clear"> </div> </div> </article>
效果:不显示指定的邮箱的作者的评论,效果如本站的侧栏评论。
ps:
1.上面的abc@126.com换成自己的不想显示评论的作者的邮箱(一般设为管理员自己的邮箱)
2.上面的“5”改为你自己想要显示的数目就可以了。
3.谢谢大家的指点,欢迎找错。
原文链接:https://www.qiquanji.com/post/7161.html
本站声明:网站内容来源于网络,如有侵权,请联系我们,我们将及时处理。
微信扫码关注
更新实时通知