{dede:arclist typeid='1' row='8' isweight='y'}
列表要按权重排序的话,需要打开 includearc.listview.class.php 找到
else if($orderby=="lastpost") { $ordersql = " ORDER BY arc.lastpost $orderWay"; }
在它的下面加上
else if($orderby == 'weight') { $ordersql = " ORDER BY arc.weight $orderWay"; }
继续找到
/hot|click|lastpost
改成
/hot|click|lastpost|weight
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)