二开教程 Development

提供PHPCMS常用模块的二次开发,改造,升级都修改过程代码

phpcms v9 更改后台排序问题

 admin  2023-06-28 12:17:38

后台文章排序怎么才可以按自己输入的数字排列?如按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 更改后台排序问题》发布于PHPCMS管理系统文章,作者:admin,如若转载,请注明出处:https://www.phpcms.vip/help/doc/709.html,否则禁止转载,谢谢配合!