AI摘要:文章介绍了如何在Mango主题侧边栏中排除管理员评论,通过修改sidebar.php文件,在Recent::alloc方法中添加'ignoreAuthor' => true参数来实现。
把sidebar.php
中最近回复的代码 改为
<!-- 最近回复 -->
<?php if (in_array('ShowRecentComments', $sidebarBlock)): ?>
<aside id="comments-3" class="widget widget_comments">
<h3 class="widget-title"><?php _e('最近回复'); ?></h3>
<ul class="widget_comment_ul">
<?php
// 设置参数来排除管理员评论
$comments = \Widget\Comments\Recent::alloc(array(
'ignoreAuthor' => true // 这里添加参数来排除作者/管理员评论
));
?>
<?php while ($comments->next()): ?>
<li>
<?php echo $comments->gravatar('40', ''); ?>
<div class="widget_comment_info">
<a rel="nofollow" href="<?php $comments->permalink(); ?>"><?php $comments->excerpt(35, '...'); ?></a>
<span>
<em><?php $comments->author(false); ?></em>
<em><?php $comments->date('Y-m-d H:i'); ?></em>
</span>
</div>
</li>
<?php endwhile; ?>
</ul>
</aside>
<?php endif; ?>