2024年03月25日 帝国cms教程 帝国cms常见问题 懒猪技术
帝国cms调用全站作者,并且统计作者发布的文章,难点就在于统计同一个作者的文章,用灵动标签通过查询作者发布文章的记录数来实现效果可以参考下面是懒猪模板网整理的解决方案和思路,方便新手站长们在利用帝国cms建网站的时候,可以少走一些弯路。
方案一,调用全站新闻系统模型的排名前30作者
[e:loop={"select count(writer) as number,writer from [!db.pre!]ecms_news temp_tnameCount where writer<>' ' group by writer order by number desc limit 30",10,24,1}] <li><a href="[!--news.url--]e/action/ListInfo.php?ph=1&mid=7&tempid=2&writer=<?=$bqr[writer]?>" target="_blank" title="<?=$bqr[writer]?>"><?=$bqr[writer]?><span> (<?=$bqr[number]?>)</span></a></li> [/e:loop]
方案二:在列表模板调用当前父栏目下所有的作者
<? $bclassid = $class_r[$GLOBALS[navclassid]][bclassid]; //获取当前父栏目ID ?> [e:loop={"select count(writer) as number,writer,classid from [!db.pre!]ecms_article temp_tnameCount where writer<>' ' and classid in (select classid from [!db.pre!]enewsclass where bclassid ='$bclassid') group by writer order by number desc limit 30",10,24,1}] <li><a href="[!--news.url--]e/action/ListInfo.php?ph=1&mid=1&tempid=2&writer=<?=$bqr[writer]?>" target="_blank" title="<?=$bqr[writer]?>"><?=$bqr[writer]?><span> (<?=$bqr[number]?>)</span></a></li> [/e:loop]
说明:
①、查询[!db.pre!]ecms_article表中作者不为空的记录,并且以作者writer字段统计数量,按照数量降序排序,调用30条数据。
②、系统模型管理,将writer字段的“结合项”勾选上。
③、[!--news.url--]e/action/ListInfo.php?ph=1&mid=7&tempid=2&writer=<?=$bqr[writer]?>,ph=1为声名要使用结合项,mid=1指定系统模型,tempid=2指定的模板id。
以上就是关于帝国cms常见问题中"帝国cms灵动标签调用全站作者,并且统计作者发布的文章"的全部内容,如果有遇到帝国cms常见问题其他问题的,可以在评论留言,或者加微信咨询。
本文链接:http://so.lmcjl.com/news/342/