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

前端之家收集整理的这篇文章主要介绍了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/534039.html

猜你在找的phpcms相关文章