您现在的位置是:首页 > 教程 > 帝国CMS教程帝国CMS教程
帝国CMS灵动标签调用指定时间段的信息多种写法教程
秋华2023-01-18 12:23:59帝国CMS教程已有人查阅
导读帝国CMS灵动标签调用指定时间段的信息多种写法教程,1、某天发布的文章,或 (to_time 换成 to_date)2、某一段时间发布的文章
1、某天发布的文章
[e:loop={'news',10,18,0,'newstime>='.to_time('2010-11-11 00:00:01').' and newstime<='.to_time('2010-11-11 23:59:59').''}]
<a href="<?=$bqsr[titleurl]?>" target="_blank"><?=$bqr[title]?></a><?=date("Y-m-d H:i:s",$bqr[newstime])?><br>
[/e:loop]
或 (to_time 换成 to_date)
[e:loop={'news',10,18,0,'newstime>='.to_date('2016-07-31 00:00:01').' and newstime<='.to_date('2016-08-31 23:59:59').''}]
<a href="<?=$bqsr[titleurl]?>" target="_blank"><?=$bqr[title]?></a><?=date("Y-m-d H:i:s",$bqr[newstime])?><br>
[/e:loop]
2、某一段时间发布的文章
[e:loop={'news',10,18,0,'newstime>='.to_time('2016-07-31 00:00:01').' and newstime<='.to_time('2016-08-31 23:59:59').''}]
<a href="<?=$bqsr[titleurl]?>" target="_blank"><?=$bqr[title]?></a><?=date("Y-m-d H:i:s",$bqr[newstime])?><br>
[/e:loop]
或
<!--[e:loop={"select * from [!db.pre!]ecms_news where newstime > UNIX_TIMESTAMP('2016-06-01') and newstime < UNIX_TIMESTAMP('2016-08-23') order by id desc limit 30",30,24,0}] -->
<li><a href="<?=$bqsr[titleurl]?>" target="_blank"><?=DoTitleFont($bqr[titlefont],esub($bqr[title],28))?> </a><?=date("Y-m-d H:i:s",$bqr[newstime])?></li>
<!--[/e:loop]-->
本文标签:
很赞哦! ()
相关文章
随机图文
-
帝国cms会员空间反馈信息怎么取消验证码
找到空间反馈的模板,去掉验证码部分的html代码,位置/e/space/template/空间模板/feedback.temp.php大概在58~66行去掉。 -
帝国CMS实现上传附件名为源文件名+随机码的方法
如何更改帝国CMS上传附件名为源文件名+随机码 -
帝国CMS内容页怎么根据TAG匹配相关文章的方法
比如说有3个TAG,每个TAG下有4篇文章,现在指定要显示10篇文章,那么每个TAG要拿出4篇,共有12篇文章,最终会打乱这12篇文章,然后取10篇 -
帝国CMS跨数据库调用的方法
帝国cms教程跨数据库调用方法灵动标签写法:多栏目ID用:classid in (1,2,3)
留言与评论 (共有 条评论) |