zblog php提供了主评论楼号的调用标签{$comment.FloorID},但在制作主题的时候发现评论楼号不是按评论时间排序的,而是按从上往下的顺序排列,当启用评论倒序输出的时候,评论楼号不会变化,下面是转载橙色阳光博客的解决方法。
解决方法:
1、编辑当前主题的template/comments.php文件,找到代码:
{foreach $comments as $key => $comment} {template:comment} {/foreach}
2、计算出当前文章(或页面)的一级评论的总数:
{php} $where = array(array('=', 'comm_LogID', $article->ID),array('=', 'comm_RootID','0'),array('=', 'comm_IsChecking', 0)); $_comments = $zbp->GetCommentList('*',$where,null,null,null); $commentsRootSum = count($_comments)+1; {/php}
上面的变量$commentsRootSum就是一级评论的总数。
3、为每个评论赋倒序楼号值:
{foreach $comments as $key => $comment} {$commentRootFloor=$commentsRootSum-$comment.FloorID} {template:comment} {/foreach}
4、编辑当前主题的template/comment.php文件,在要输出楼号的位置添加评论楼号调用代码:
{if $comment.Level=='1'}{$commentRootFloor}楼{/if}
5、上面的代码需要在开启倒序以后才能正确输出,为了保证正序倒序都能正常,所以调改一下代码为:
{php} if ($option['ZC_COMMENT_REVERSE_ORDER']=='1') { $where = array(array('=', 'comm_LogID', $article->ID),array('=', 'comm_RootID','0'),array('=', 'comm_IsChecking', 0)); $_comments = $zbp->GetCommentList('*',$where,null,null,null); $commentsRootSum = count($_comments)+1; } else { $commentsRootSum = 0; } {/php} {foreach $comments as $key => $comment} {$commentRootFloor=abs($comment.FloorID-$commentsRootSum)} {template:comment} {/foreach}
注意:我们这里要把查询的代码放在循环的外面,不然要出现重复Query
代码转自:http://oss.so/blog/62.html