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>//分页
View Code

 

以上是关于ThinkCMF:多个分类下的文章显示并分页;的主要内容,如果未能解决你的问题,请参考以下文章

A.PHP读取txt文本文件并分页显示的方法

树形展示三级分类并分页:递归树形结构

SpringBoot+Mybatis+ Druid+PageHelper 实现多数据源并分页

php 查询结果分原网页显示并分页

TP5.1 文章分类用逗号隔开,怎么查询属于多个分类的数据?

求教jsp分页显示的问题,如何循环并分页取得参数?