本文首要介绍phpcms v9在做查找时,怎么使查找成果依照发布时刻或ID排序,下面是CMS集中营为您供给的办法,期望能对您有所协助。
翻开phpcmsmodulessearchindex.php文件
找到:

$data=$this->content_db->select($where,'*');

按发布时刻降序摆放修改为:

$data=$this->content_db->select($where,'*','',$order='inputtimeDESC');

按发布时刻升序摆放修改为:

$data=$this->content_db->select($where,'*','',$order='inputtimeASC');

按ID降序摆放修改为:

$data=$this->content_db->select($where,'*','',$order='IDDESC');

按ID升序摆放修改为:

$data=$this->content_db->select($where,'*','',$order='IDASC');

拓宽:
你还能够依照其他方法摆放,只需将$order=''中的参数修改为你要排序的字段即可

声明:有的资源均来自网络转载,版权归原作者所有,如有侵犯到您的权益 请联系邮箱:123456@qq.com 我们将配合处理!

原文地址:PHPCMS二次开发修改搜索结果排序方法发布于2022-05-21 07:43:36

相关推荐