帝国CMS自定义列表按时间排序调用
帝国CMS是一个功能强大的开源内容管理系统,它提供了自定义列表按时间调用的功能。这个功能可以帮助您按照时间顺序显示文章或其他内容。要实现这个功能,您可以在模板中使用以下代码: ```php {list $data=$this->GetList(10)} {$data[i].newstime} {$data[i].title} {$data[i].description} {/list} ``` 这段代码会按照时间顺序显示文章的发布时间、标题和描述。您可以根据自己的需求修改代码中的参数,例如更改每页显示的文章数量等。
帝国CMS自定义列表按时间调用
演示代码按8小时、24小时、7天、30天、365天时间调用,大家可以参照代码按实际情况修改3600*72=72小时
8小时内selectcount(*)astotalfrom[!db.pre!]ecms_newswhereunix_timestamp(now())-newstime<3600*720select*from[!db.pre!]ecms_newswhereunix_timestamp(now())-newstime<3600*720orderbyonclickdesc24小时内selectcount(*)astotalfrom[!db.pre!]ecms_newswhereunix_timestamp(now())-newstime<3600*2400select*from[!db.pre!]ecms_newswhereunix_timestamp(now())-newstime<3600*2400orderbyonclickdesc7天内selectcount(*)astotalfrom[!db.pre!]ecms_newswhereunix_timestamp(now())-newstime<3600*7*24select*from[!db.pre!]ecms_newswhereunix_timestamp(now())-newstime<3600*7*24orderbyonclickdesc一个月selectcount(*)astotalfrom[!db.pre!]ecms_newswhereunix_timestamp(now())-newstime<3600*30*24select*from[!db.pre!]ecms_newswhereunix_timestamp(now())-newstime<3600*30*24orderbyonclickdesc一年selectcount(*)astotalfrom[!db.pre!]ecms_newswhereunix_timestamp(now())-newstime<3600*365*24select*from[!db.pre!]ecms_newswhereunix_timestamp(now())-newstime<3600*365*24orderbyonclickdesc