phpcms v9更改后台文章排序的方法,后台文章排序按自己输入的数字排列?如按4,3,2,1,从大到小排列?
实现方法:
修改文件:
复制代码 代码示例:
phpcmsmodulescontent 中的 content.php
$datas = $this->db->listinfo($where,'id desc',$_GET['page']);
修改为:
复制代码 代码示例:
$datas = $this->db->listinfo($where,'listorder ASC, id desc',$_GET['page']);