在帝国cms开发过程中有时候需要对已经发布的信息不让它在列表页显示,如果用帝国自带的未审核,那么将不会生成静态页面,对于已经生成且收录的文章及其不友好,那么如果实现让已经发布的文章不在列表页显示呢?
7.5解决方法
第一步:参考7.5以下方法
第二步:栏目-生成选项-列表页显示附加sql条件
添加openlist<>1即可
7.5以下方法,主要分两步走:
第一步:
模型添加一个新字段openlist,这里添加一个单选框,0为显示,1为不显示,如下图,【管理系统模型里】记得勾选录入项、可修改、可添加、列表页
初始值:
0==显示:default
1==不显示
第二步:修改帝国原生文件
找到/e/class/functions.php文件2739行,将下面的代码
$query="select ".ReturnSqlListF($mid)." from {$dbtbpre}ecms_".$class_r[$classid][tbname]." where ".$yhadd."classid='$classid' order by ".ReturnSetTopSql('list').$addorder.$limit;
$totalquery="select count(*) as total from {$dbtbpre}ecms_".$class_r[$classid][tbname]." where ".$yhadd."classid='$classid'";//统计
修改为:
$query="select ".ReturnSqlListF($mid)." from {$dbtbpre}ecms_".$class_r[$classid][tbname]." where ".$yhadd."classid='$classid' and openlist<>'1' order by ".ReturnSetTopSql('list').$addorder.$limit;
$totalquery="select count(*) as total from {$dbtbpre}ecms_".$class_r[$classid][tbname]." where ".$yhadd."classid='$classid' and openlist<>'1'";//统计
刷新列表页即可。
注意:只对列表页生效哦,封面页不生效,新增模型也不生效
拓展说明:
1.sql调用方法:
select * from phome_ecms_news where classid=1 and openlist<>'1' order by id
2.灵动标签的用法:
灵动标签附加sql条件参数用:
[e:loop={0,10,3,0,'classid not in(3,6)'}]
<a href="<?=$bqsr['titleurl']?>" target="_blank"><?=$bqr['title']?></a> <br>
[/e:loop]
以上代码是排除了栏目id为3和6下的所有文章。也可以排除指定id的文章,只需要把classid换成id就行