怎样让织梦DEDECMS的dede:channelartlist语句解除指定typeid

  在做织梦模板时,在行使 dede:channelartlist 自动挪用栏目内容时,常常会碰着某些栏目不必要挪用,好比“关于我们”、“接洽地点”等无一连更新的栏目。要想在dede:channelartlist挪用时倾轧某些栏目,这必要修改dede源码,让dede:channelartlist解除指定typeid。

  起首找到 include aglibchannelartlist.lib.php,出于安详思量先备份这个文件。打开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 `idea_arctype` where $tpsql order by sortrank asc limit $totalnum”);

  在其前面添加(留意是在前面添加):

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

  生涯文件后,再模板挪用时:

  {dede:channelartlist typeid =’1′ notypeid=’2,3,4,5’}

  个中notypeid=’2,3,4,5′ 中的 2,3,4,5 为 1 的子栏目即见效。

☉免责声明:本站所有模板均来自用户分享和网络收集,仅供学习与参考,请勿用于商业用途,如果损害了您的权利,请联系网站客服,我们核实后会立即删除。
☉本站提供的源码、模板、软件工具等其他资源,都不包含技术服务,请大家谅解!
pbootcms模板网 » 怎样让织梦DEDECMS的dede:channelartlist语句解除指定typeid

Pbootcms模板网 提供优质的模板集合

立即查看 了解详情