欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

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

  發(fā)布時間:2014-04-25 16:19:28   作者:佚名   我要評論
這篇文章主要介紹了phpcms v9更改后臺文章排序的方法,需要的朋友可以參考下

后臺文章排序怎么才可以按自己輸入的數(shù)字排列?如按4,3,2,1,從大到小排列?
實現(xiàn)方法如下:

修改文件: 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']);

相關(guān)文章

最新評論