织梦通过noflag标签过滤多个属性

打开/include/taglib/arclist.lib.php文件

找到

if(!empty($noflag)) $orwheres[] = " FIND_IN_SET('$nfarr[$jj]', arc.flag)<1 ";

改为

if(!empty($noflag)) {

$nfarr = explode(",",$noflag);

for ($jj=0;$jj<count($nfarr);$jj++) {

$orwheres[] .= " FIND_IN_SET('$nfarr[$jj]', arc.flag)<1 ";

}

}

在需要过滤属性的代码里面加入

noflag='c,h,p'

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wsfwpp.html