欢迎来到258分享网,纯净的网络源码分享基地!

258资源分享网

全部作品
全部作品
网站源码
微信源码
素材特效
源码插件
视频教程
建站学院
热门搜索: 织梦  农业种植  农业  安全设置  官方
258资源分享 > 建站学院 > 织梦教程 > 织梦dedecms搜索结果页调用总搜索条数的教程

推荐下载

HTML5响应式自适应网咯设计

2020-05-12   浏览:789

HTML5自适应律师工作室类网

2020-04-04   浏览:654

高端HTML5响应式企业通用网

2020-05-06   浏览:560

html5响应式外贸网站英文版

2020-05-08   浏览:545

HTML5影视传媒文化公司类网

2020-05-12   浏览:543

织梦dedecms搜索结果页调用总搜索条数的教程

发布时间:2020-07-16  

要实现织梦dedecms搜索结果页调用总搜索条数,需修改代码,打开根目录下/include/arc.searchview.class.php

效果演示

织梦dedecms搜索结果页调用总搜索条数的教程

第一步、找到大概第533行,找到

1

2

3

4

5

6

7

8

9

 

else if($tagname=="pagelist")

{

  $list_len = trim($ctag->GetAtt("listsize"));

 if($list_len=="")

 {

  $list_len = 3;

 }

  $this->dtp->Assign($tagid,$this->GetPageListDM($list_len));

}

 

在这句代码的下面加入:

1

2

3

4

5

6

7

8

9

 

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行:

1

2

3

4

5

6

 

/**

 *  获得当前的页面文件的url

 *

 * @access    public

 * @return    string

 */

 

在这句代码的上面添加以下代码:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

 

//————  

//搜索输出总量织梦模板下载  

//————  

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'/} 即可调用