Joe主题[7.3.6]侧边栏最新回复评论的显示数量,我在后台 评论列表数目 里设置之后,前台页面没有反应,于是小天翻找源码,找到了问题所在。
找到usr/themes/Joe/public目录下的aside.php,第132行.
<?php $this->widget('Widget_Comments_Recent', 'ignoreAuthor=true&pageSize=5')->to($item); ?>
修改为:
<?php $this->widget('Widget_Comments_Recent', 'ignoreAuthor=true')->to($item); ?>
$this->parameter->setDefault(array('pageSize' => $this->options->commentsListSize, 'parentId' => 0, 'ignoreAuthor' => false));
我来了