本文主要介紹phpcms v9在做搜索時,如何使搜索結(jié)果按照發(fā)布時間或ID排序,下面是CMS集中營為您提供的方法,希望能對您有所幫助。
打開 phpcmsmodulessearchindex.php文件
找到:
$data = $this->content_db->select($where, '*');
按發(fā)布時間降序排列修改為:
$data = $this->content_db->select($where, '*','',$order = 'inputtime DESC');
按發(fā)布時間升序排列修改為:
$data = $this->content_db->select($where, '*','',$order = 'inputtime ASC');
按ID降序排列修改為:
$data = $this->content_db->select($where, '*','',$order = 'ID DESC');
按ID升序排列修改為:
$data = $this->content_db->select($where, '*','',$order = 'ID ASC');
拓展:
你還可以按照其他方式排列,只需將$order=''中的參數(shù)修改為你要排序的字段即可
版權(quán)聲明: 本站資源均來自互聯(lián)網(wǎng)或會員發(fā)布,如果侵犯了您的權(quán)益請與我們聯(lián)系,我們將在24小時內(nèi)刪除!謝謝!
轉(zhuǎn)載請注明: PHPCMS二次開發(fā)修改搜索結(jié)果排序方法