phpcms v9更改后台文章排序的方法
摘要:后台文章排序怎么才可以按自己输入的数字排列?如按4,3,2,1,从大到小排列?实现方法如下:修改文件:phpcmsmodulesconten...
后台文章排序怎么才可以按自己输入的数字排列?如按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']);
【phpcms v9更改后台文章排序的方法】相关文章:
★ phpcms后台设置了访问域名后导致网站后台无法访问的解决方法
★ Phpcms V9 管理后台登陆及会员注册登录模板的修改方法