首页 > CMS建站 > PhpCMS > 正文

phpcms v9 更改后台排序问题

2020-10-10 21:16: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']);

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表