POST TIME:2019-03-19 16:28
dedecms列表頁實(shí)現(xiàn)文檔按權(quán)重weight排序(從小到大的順序)方法:
1,在list_artcile.htm模板中使用
{dede:list pagesize=’12′ orderby=’weight’ orderway=’asc’}
2,然后修改include目錄下的arc.listview.class.php
查找else if($orderby==”lastpost。。。
在下面補(bǔ)充
else if($orderby==”weight”) { $ordersql = ” order by arc.weight $orderWay”; }
3,同樣是這個(gè)文件,查找“if(ereg(‘hot|click|lastpost’,$orderby))”改為:
if(ereg(‘hot|click|weight|lastpost’,$orderby))
上面三個(gè)步驟,即可實(shí)現(xiàn)列表頁內(nèi)容按權(quán)重排序,越小越靠前。
希望以上內(nèi)容對(duì)大家有所幫助