织梦cms可以将一个文章放入到2个 栏目,一个是文档主栏目,一个是文档 副栏目,而最终的 管理是在主栏目中,但是被放入到副栏目的文档同样是可以在副栏目的前台 列表页中展示,这样就方便了一些有特殊栏目要求的需求。但 问题来了,经常我们不仅仅是需要在列表页中去展示,也需要在 首页或者其他页面中展示,这样就需要用到了arclist这样一个 标签来进行 调用。但是,你会发现,默认在arclist中是无法直接调用副栏目的文档出来的。
其原因就是因为arclist标签文件中相关的php代码函数不 支持副栏目的调取,这个时候只需要将相关的代码进行更改,就可以让arclist支持副栏目的调用了。如何 修改,可以参考以下解决方案中提供的代码直接替换。
查找根 目录下 /include/taglib/arclist.lib.php这个文件
第一步:打开arclist.lib.php后,找到大概在261行代码的地方,将以下代码
$orwheres[] = " arc.typeid in ($typeid) ";
|
替换成以下代码
$vicewheres = ""; foreach($typeid as $tid){ $liketypeid2 = ",".$tid.","; $vicewheres.= " or CONCAT(',',arc.typeid2,',') like '%$liketypeid2%' "; } if($vicewheres!="") $orwheres[] = " (arc.typeid in ($typeid) $vicewheres) "; else $orwheres[] = " arc.typeid in ($typeid) ";
|
第二步:然后在大概第303行的位置找到以下代码:
if ($CrossID=='') $orwheres[] = ' arc.typeid in ('.GetSonIds($typeid).')'; else $orwheres[] = ' arc.typeid in ('.GetSonIds($typeid).','.$CrossID.')';
|
将其替换成以下代码
//副栏目处理
$vicewheres = "";
$typeids = explode(",",GetSonIds($typeid));
$crossids = explode(",",$CrossID);
$typeidss = array_merge($typeids,$crossids);
$typeidss = array_unique($typeidss);
foreach($typeidss as $tid){ $liketypeid2 = ",".$tid.","; $vicewheres.= " or CONCAT(',',arc.typeid2,',') like '%$liketypeid2%' "; }
if($CrossID==''){ if($vicewheres!="") $orwheres[] = ' (arc.typeid in ('.GetSonIds($typeid).') '.$vicewheres.') ';
else $orwheres[] = ' arc.typeid in ('.GetSonIds($typeid).') '; }else{ if($vicewheres!="") $orwheres[] = ' (arc.typeid in ('.GetSonIds($typeid).','.$CrossID.') '.$vicewheres.') ';
else $orwheres[] = ' arc.typeid in ('.GetSonIds($typeid).','.$CrossID.') '; }
|
修改完成后保存覆盖就可以了。
通过上面的修改,可以有效地解决了DEDECMS不支持通过arclist标签调用副栏目文章的问题。
(责任编辑:admin) |