帝国CMS中灵动标签的使用场景和示例
调用包含特定关键词的文章:可以使用INSTR函数来调用包含特定关键词的文章。例如,调用标题中包含“帝国CMS”的3篇文章:
[e:loop={"select * from [!db.pre]ecms_news where classid=1 and INSTR(title, '帝国CMS') > 0 order by onclick desc limit 3",0,24,1}]
[/e:loop]
调用标题中包含当前内容页关键词的文章:可以使用$navinfor[keyword]来调用标题中包含当前内容页关键词的文章:
[e:loop={"select * from [!db.pre]ecms_news where classid=1 and title like '%$navinfor[keyword]%' order by onclick desc limit 3",0,24,1}]
[/e:loop]
排除置顶、推荐等信息:可以使用条件语句排除置顶、推荐等信息,例如:
select * from phome_ecms_表 where istop=0 and isgood=0 and firsttitle=0 and checked=1 order by newstime desc limit 10
这段代码会排除置顶、推荐等信息,并按照发布时间降序排列13。
当前目录:帝国CMS教程
帝国CMS中灵动标签的使用场景和示例
帝国CMS教程 2025-04-03 16:16:51