设为首页 - 加入收藏 ASP站长网(Aspzz.Cn)- 科技、建站、经验、云计算、5G、大数据,站长网!
热搜: 手机 数据 公司
当前位置: 首页 > 运营中心 > 建站资源 > 经验 > 正文

phpcms v9 修改后台排序问题

发布时间:2021-12-18 11:07 所属栏目:19 来源:互联网
导读:后台文章排序怎么才可以按自己输入的数字排列?如按4,3,2,1,从大到小排列?实现方法如下。 修改文件:phpcms/modules/content 中的 content.php 将:$datas = $this-db-listinfo($where,id desc,$_GET[page]); 改成: $datas = $this-db-listinfo($where,li
后台文章排序怎么才可以按自己输入的数字排列?如按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']);

(编辑:ASP站长网)

    网友评论
    推荐文章
      热点阅读