搜索結(jié)果要是指定欄目的就按欄目id來調(diào)用搜索結(jié)果模板(search1.htm,search2.htm,search8.htm),沒有指定欄目就是默認(rèn)的search.htm模板文件
打開 /include/arc.searchview.class.php 找到
$tempfile = $GLOBALS['cfg_basedir'].$GLOBALS['cfg_templets_dir']."/".$GLOBALS['cfg_df_style']."/search.htm";
在它下面加入
$tempfile = ($this->TypeID > 0) ? str_replace(".htm","{$this->TypeID}.htm",$tempfile) : $tempfile;
這樣就完成了。
這樣修改后,有指定欄目的就按欄目id來調(diào)用搜索結(jié)果模板(search1.htm,search2.htm,search8.htm)。
版權(quán)聲明: 本站資源均來自互聯(lián)網(wǎng)或會員發(fā)布,如果侵犯了您的權(quán)益請與我們聯(lián)系,我們將在24小時內(nèi)刪除!謝謝!
轉(zhuǎn)載請注明: 織夢搜索結(jié)果根據(jù)搜索不同欄目顯示不同搜索結(jié)果模板