帝国CMS如何屏蔽某个ID栏目文章的调用
帝国CMS建网站时,如果不想在最新文章里调用某个ID栏目下的文章,可以在代码里将这个ID屏蔽掉,这样就不会调用这个栏目下的文章了。
帝国CMS不调用指定栏目代码:
[e:loop={"select * from phome_ecms_news where title like '%学习%' and classid<>82 and checked=1 order by newstime desc limit 30",30,24,0}] <li><a href="<?=$bqsr[titleurl]?>" target="_blank"><?=esub($bqr[title],36)?></a></li> [/e:loop]
上面语句的意思为调用网站中包含“学习”2个字的信息,其中classid<>82 意思为不调用栏目ID为82内的文章。
如果要屏蔽多个栏目可以用
classid not in(82,83,84,85)
替换