当前位置:首页 > CMS教程 > phpcms > 列表

phpcms v9 更改后台排序问题

发布:smiling 来源: PHP粉丝网  添加日期:2014-10-19 22:13:22 浏览: 评论:0 

后台文章排序怎么才可以按自己输入的数字排列?如按4,3,2,1,从大到小排列?实现方法如下。

修改文件:phpcms\modules\content 中的 content.php

将:$datas = $this->db->listinfo($where,'id desc',$_GET['page']); 改成:

$datas = $this->db->listinfo($where,'listorder ASC, id desc',$_GET['page']);

Tags: phpcms文章排序 phpcms后台排序

分享到: