帝国cms 调用24小时/一周/一月热门点击
[e:loop={0,9,4,0,'newstime>UNIX_TIMESTAMP()-86400*30','onclick desc'}]<li><a href="<?=$bqsr['titleurl']?>"><?=$bqr['title']?></a></li>[/e:loop]
30=月;
7=周;
1=日;
依此类推。
上面使用场景比较简单,如果使用场景比较复杂(条件判断比较多),可以使用以下办法:
[e:loop={"select * from {$dbtbpre}ecms_news where newstime>UNIX_TIMESTAMP()-86400*7and classid=1 order by onclick desc limit 10",0,24,0}]<a href="<?=$bqsr['titleurl']?>" target="_blank"><?=$bqr['title']?></a>[/e:loop]
and classid=7 同时指定栏目
newstime:文章发布时间
其中86400*7中的7表示天,如果是月就是30,年就是365