后台文章排序怎么才可以按自己输入的数字排列?如按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']); 文章导航 phpcms实现在首页列表页频道页调用评论数代码分享phpcms v9屏蔽后台登陆验证码的方法