ThinkCMF:多个分类下的文章显示并分页;
Posted 宠辱不惊,看庭前花开花落; 去留无意,望天空云卷云舒
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ThinkCMF:多个分类下的文章显示并分页;相关的知识,希望对你有一定的参考价值。
一、查找多个分类下的文章放在一个页面显示并分类where:id in(1,2,3);
<php> $posts=sp_sql_posts_paged(‘field:post_title,post_date,object_id,term_id;order:post_date desc;where:term_id in(1,2,3)‘); </php> <foreach name="posts[‘posts‘]" item="v"> <div class="more_new_fo_l_do"> <div class="more_new_fo_l_do_l"><a title="{$v.post_title}" target="_blank" href="{:leuu(‘article/index‘,array(‘id‘=>$v[‘object_id‘],‘cid‘=>$v[‘term_id‘]))}">{$v.post_title}</a></div><div class="more_new_fo_l_do_r">{:date(‘Y-m-d‘,strtotime($v[‘post_date‘]))}</div>//切换时间格式:如2017-01-01 </div> </foreach> <div class="fenye"><ul>{$posts.page}</ul></div>//分页
以上是关于ThinkCMF:多个分类下的文章显示并分页;的主要内容,如果未能解决你的问题,请参考以下文章
SpringBoot+Mybatis+ Druid+PageHelper 实现多数据源并分页