实现文档按权重weight排序(从小到大的顺序)方法:
1,在list_artcile.htm中使用
{dede:list pagesize='12' orderby='weight' orderway='asc'}2,然后修改include目录下的arc.listview.class.php
查找
else if($orderby=="lastpost在下面补充
else if($orderby=="weight") { $ordersql = " order by arc.weight $orderWay"; }3,同样是这个文件,
查找
if(preg_match('/hot|click|lastpost/', $orderby))
改为:
if(preg_match('/hot|click|weight|lastpost/',$orderby))上面三个步骤,即可实现列表页内容按权重排序,越小越靠前。希望以上内容对大家有所帮助。