织梦搜索结果页单独调用搜索结果条数的方法

时间:2017-12-17

织梦dedecms默认的搜索结果页面不支持搜索结果总数的调用,没有这样的标签,但有时候我们需要在搜索

 

结果页单独显示搜索结果条数,所以我们就得自己通过修改文件来实现了。

 

首先我们需要找到搜索页面调用的代码文件/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;   //当结果超过限制时,重设结果页数    
    if($this->TotalResult > $this->SearchMaxRc)   
    { 
        $totalpage = ceil($this->SearchMaxRc/$this->PageSize);    
    }   
    $plist .= $this->TotalResult;    
    return $plist;  
}

第三步:在搜索结果页模板里要显示结果条数的地方通过如下标签调用:

 

{dede:itemcount listsize='4'/}

这样就可以了。

上一条:织梦DEDECMS首页,列表页及文章页调用tag标签的方法 下一条:为织梦自定义表单添加最后发布时间(适用于多个自定义表单,不用每个点进去看)

相关文章

最新文章