加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > CMS系统 > phpcms > 正文

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

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

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

(编辑:李大同)

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

    推荐文章
      热点阅读