phpcms v9 更改后台排序问题
发布:smiling 来源: PHP粉丝网 添加日期:2014-10-19 22:13:22 浏览: 评论:0
后台文章排序怎么才可以按自己输入的数字排列?如按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']);
Tags: phpcms文章排序 phpcms后台排序
相关文章
- ·phpcms文章按点击量排序方法(2014-10-20)
- ·Phpcms v9调用全站文章排序榜实现方法(2015-03-24)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)