View Single Post
  #1   IP: 49.82.32.177
Old 2014-03-17, 09:42 AM
topvip topvip is offline
超级版主
 
Join Date: 2006-01-04
Posts: 1206
topvip 正向着好的方向发展
Default DedeCMS v5.7 sp1一篇文章怎么属于多个栏目

副栏目 可以实现 你要的 效果



修改文件/include/taglib/arclist.lib.php第295行左右

if($CrossID=='') $orwheres[] = ' arc.typeid in ('.GetSonIds($typeid).')';

else $orwheres[] = ' arc.typeid in ('.GetSonIds($typeid).','.$CrossID.')';


改成




if($CrossID=='') $orwheres[] = ' arc.typeid in ('.GetSonIds($typeid).') or arc.typeid2 in ('.GetSonIds($typeid).')';

else $orwheres[] = ' arc.typeid in ('.GetSonIds($typeid).','.$CrossID.') or arc.typeid2 in ('.GetSonIds($typeid).','.$CrossID.')';
Reply With Quote