加入收藏 | 设为首页 | 会员中心 | 我要投稿 PHP编程网 - 黄冈站长网 (http://www.0713zz.com/)- 数据应用、建站、人体识别、智能机器人、语音技术!
当前位置: 首页 > 教程 > 正文

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

发布时间:2021-05-15 20:07:52 所属栏目:教程 来源:网络整理
导读:后台文章排序怎么才可以按自己输入的数字排列?如按4,3,2,1,从大到小排列? 实现方法如下: 修改文件: phpcmsmodulescontent 中的 content.php $datas = $this-db-listinfo($where,'id desc',$_GET['page']); 改成 $datas = $this-db-listinfo($whe

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

(编辑:PHP编程网 - 黄冈站长网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    热点阅读