由于dedecms原生不支持搜索頁面結(jié) 果總數(shù)的調(diào)用,所以得自己修改文件來支持了。搜索頁面調(diào)用的代碼全在/include/arc.searchview.class.php里,我們先打開 /include/arc.searchview.class.php文件,然后按下面步驟修改文件
第一步:在
else if($tagname=="pagelist")
{
$list_len = trim($ctag->GetAtt("listsize"));
if($list_len=="")
{
$list_len = 3;
}
$this->dtp->Assign($tagid,$this->GetPageListDM($list_len));
}
下面添加:
else if($tagname=="itemcount")
{
$list_len = trim($ctag->GetAtt("listsize"));
if($list_len=="")
{
$list_len = 3;
}
$this->dtp->Assign($tagid,$this->GetItemsCountDM($list_len));
}
第二步:在
/**
* 獲得當前的頁面文件的url
*
* @access public
* @return string
*/
前面添加下面代碼:
//————
//搜索輸出總量
//————
function GetItemsCountDM($list_len)
{
global $oldkeyword;
$pagenow = ($this->PageNo-1) * 10 + 1;
$pagenows = $this->PageNo*10; //當結(jié)果超過限制時,重設(shè)結(jié)果頁數(shù)
if($this->TotalResult > $this->SearchMaxRc)
{
$totalpage = ceil($this->SearchMaxRc/$this->PageSize);
}
$plist .= $this->TotalResult;
return $plist;
}
第三步:
在要顯示的地方加入
{dede:itemcount listsize='4'/} 即可
版權(quán)聲明: 本站資源均來自互聯(lián)網(wǎng)或會員發(fā)布,如果侵犯了您的權(quán)益請與我們聯(lián)系,我們將在24小時內(nèi)刪除!謝謝!
轉(zhuǎn)載請注明: 織夢搜索頁面搜索結(jié)果總數(shù)調(diào)用方法