织梦中channelartlist调用排除指定typeid栏目数据

2017-04-13 21:03:06 dedecms

方法是:找到 \include\taglib\channelartlist.lib.php,查找$attlist

将$attlist = 'typeid|0,row|20,cacheid|';

修改为:

$attlist = 'typeid|0,row|20,cacheid|,notypeid|0'; //此处添加了一个所要排除typeid的参数---notypeid

查找:

$dsql->SetQuery("Select id,typename,typedir,isdefault,ispart, defaultname,namerule2,moresite,siteurl,sitepath from `zmb_arctype` where $tpsql order by sortrank asc limit $totalnum"); 在其前面添加(注意是在前面添加):

//否定指定ID if($notypeid!=0) { $tpsql = $tpsql."and not(id in($notypeid)) "; }

模板中

调用:

{dede:channelartlist typeid ='152' notypeid='113,144,125,122'}

其中notypeid='

113,144,125,122

'中的

113,144,125,122

152

的子栏目。