织梦dedecms搜索结果页调用总搜索条数的教程
来源:本站原创|时间:2021-08-05|栏目:dedecms|点击: 次
要实现织梦dedecms搜索结果页调用总搜索条数,需修改代码,打开根目录下/include/arc.searchview.class.php
效果演示
织梦dedecms搜索结果页调用总搜索条数的教程
第一步、找到大概第533行,找到
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));
}
第二步、继续找到大概935行:
/**
* 获得当前的页面文件的url
*
* @access public
* @return string
*/
在这句代码的上面添加以下代码:
//————
//搜索输出总量www.xiuzhanwang.com 织梦模板下载
//————
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'/} 即可调用
您可能感兴趣的文章
- 08-05Dedecms文件目录结构解说(能知道织梦每个文件有什么用)
- 08-05Dedecms5.7版ckeditor网页编辑器添加中文字体
- 08-05织梦DedeCMS获取当前栏目文章数量
- 08-05织梦模板如何添加和调用自定义字段的方法
- 08-05DedeCMS后台模块列表显示空白的解决办法
- 08-05DedeCMS自定义字段图片调用的问题{dede:img ...}解决方法
- 08-05织梦DedeCMS调用显示discuz里面主题的方法
- 08-05限制织梦会员每天投稿数量方法
- 08-05常用的织梦dedecms安全设置集合整理
- 08-05织梦教程:后台编辑器添加中文字体方法