欢迎来到入门教程网!

dedecms

当前位置:主页 > CMS教程 > dedecms >

织梦CMS搜索页面搜索结果总数调用办法

来源:本站原创|时间:2021-08-05|栏目:dedecms|点击:

由于织梦CMS原生不支持搜索页面结 果总数的调用,所以得自己修改文件来支持了。
 
搜索页面调用的代码全在/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′/} 即可 。
 

上一篇:织梦dede搜索页面不能使用arclist等标签解决方案

栏    目:dedecms

下一篇:织梦dedecms模板 怎么删除自定义内容模型表

本文标题:织梦CMS搜索页面搜索结果总数调用办法

本文地址:https://www.xiuzhanwang.com/a1/dedecms/16191.html

更多dedecms

您可能感兴趣的文章

阅读排行

本栏相关

随机阅读

网页制作CMS教程网络编程软件编程脚本语言数据库服务器

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:835971066 | 邮箱:835971066#qq.com(#换成@)

Copyright © 2002-2020 脚本教程网 版权所有