服务报价 | 域名主机 | 网络营销 | 软件工具| [加入收藏]
 热线电话: #
当前位置: 主页 > php教程 > dedecms教程 >

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

时间:2016-04-01 09:08来源: 作者: 点击:
织梦DedeCms channelartlist调用排除指定typeid栏目数据,找到 \include\taglib\channelartlist.lib.php,查找$attlist 将$attlist = typeid|0,row|20,cacheid|; 修改为: $attlist = typeid|0,row|20,cacheid|,notypeid|0; //此处添加
织梦DedeCms channelartlist调用排除指定typeid栏目数据,找到 \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 ='114' notypeid='123,124,122,127'}
其中notypeid='123,124,122,127'中的123,124,122,127为114的子栏目。
(责任编辑:最模板)
顶一下
(0)
0%
踩一下
(0)
0%
------分隔线----------------------------