您的位置:首页 > 编程语言 > PHP开发

phpcms v9更改后台文章排序的方法

2014-04-25 16:19 459 查看
后台文章排序怎么才可以按自己输入的数字排列?如按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']);
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: