优选主流主机商
任何主机均需规范使用

如何在phpcms V9中修改后台文章排序功能

后台文章排序怎么才可以按自己输入的数字排列?如按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’]);

未经允许不得转载:搬瓦工中文网 » 如何在phpcms V9中修改后台文章排序功能