dede arclist 标签 添加自定义排序类型

来源:互联网 发布:淘宝千里眼是什么 编辑:程序博客网 时间:2024/05/29 09:01

修改文件:\include\taglib\arclist.lib.php

目标:默认没有按senddate  入库时间排序的,现在需要这种排序类型

在340行 

else if($orderby == 'scores') $ordersql = "  ORDER BY arc.scores $orderWay";

之后添加

else if($orderby == 'senddate') $ordersql = "  ORDER BY arc.senddate $orderWay";

保持,然后标签 调用添加orderby='senddate' 属性即可。

类似的可以添加其他类型的排序方式只要字段在dede_archives 表中存在切可排序的字段。例如 weight 字段等。