靈動標簽:
[e:loop={0,10,3,0,'isgood=1','newstime DESC'}]
<a href="<?=$bqsr['titleurl']?>" target="_blank"><?=$bqr['title']?></a> <br>
[/e:loop]'
萬能標簽:
[ecmsinfo]0,10,32,0,3,1,0,'isgood=1','newstime DESC'[/ecmsinfo]
標簽附加sql有以下幾種:
1、isgood=1 一級推薦(1-9) isgood=0 排除推薦調用
2、firsttitle=1 一級頭條(1-9) firsttitle=0 排除頭條調用
3、field='值' 字段等于某值
4、newstime DESC 按發布時間降序排序 (最新)
5、newstime ASC 按發布時間升序排序 (最舊)
6、id DESC 按ID降序排序
7、onclick DESC 按點擊降序排序
8、totaldown DESC 按下載降序排序
9、plnum DESC 按評論降序排序
10、diggtop DESC 按頂數降序排序
11、isurl=0 排除重復文章調用
12、istop=0 排除置頂調用
13、ismember=0 排除會員調用(=1時為調用會員)
14、ispic=1 只調用 標題圖片的信息
帝國CMS 靈動標簽排除頭條、推薦、置頂等信息調用
sql調用:
select * from phome_ecms_表 where istop=0 and isgood=0 and firsttitle=0 and checked=1 order by newstime desc limit 10
解釋:
istop=0 是排除置頂 信息
isgood=0 是排除推薦 信息
firsttitle=0 是排除頭條 信息
靈動標簽簡化版寫法
sql附加條件'istop=0 and isgood=0 and firsttitle=0 and checked=1'