dedecms 实现织梦搜索页面调用 文章功能
发布:smiling 来源: PHP粉丝网 添加日期:2014-11-07 10:41:55 浏览: 评论:0
直接进入主题,今天使用dedecms织梦开源系统做企业网站,要实现在搜索页面里调用推荐新闻的,但是dedecms织梦在搜索页面里不可以直接使用以下代码调用文章的:
- {dede:arclist flag='c' titlelen=42 row=6}
- [field:title/]
- [field:description function='cn_substr(@me,80)'/]...
- {/dede:arclist}
如是笔者硬是把搜索页面的内核代码完全的看了一遍,终于实现了搜索页面调用“推荐文章”.
为什么搜索页面不能调用新闻呢,下面我来告诉大家,找到arc.searchview.class.php文件,看以下代码:
- function Display()
- {
- foreach($this->dtp->CTags as $tagid=>$ctag)
- {
- $tagname = $ctag->GetName();
- if($tagname=="list")
- {
- $limitstart = ($this->PageNo-1) * $this->PageSize;
- $row = $this->PageSize;
- if(trim($ctag->GetInnerText())=="")
- {
- $InnerText = GetSysTemplets("list_fulllist.htm");
- }
- else
- {
- $InnerText = trim($ctag->GetInnerText());
- }
- $this->dtp->Assign($tagid,
- $this->GetArcList($limitstart,
- $row,
- $ctag->GetAtt("col"),
- $ctag->GetAtt("titlelen"),
- $ctag->GetAtt("infolen"),
- $ctag->GetAtt("imgwidth"),
- $ctag->GetAtt("imgheight"),
- $this->ChannelType,
- $this->OrderBy,
- $InnerText,
- $ctag->GetAtt("tablewidth"))
- );
- }
- 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=="likewords")
- {
- $this->dtp->Assign($tagid,$this->GetLikeWords($ctag->GetAtt('num')));
- }
- else if($tagname=="hotwords")
- {
- $this->dtp->Assign($tagid,lib_hotwords($ctag,$this));
- }
- else if($tagname=="field")
- {
- //类别的指定字段
- if(isset($this->Fields[$ctag->GetAtt('name')]))
- {
- $this->dtp->Assign($tagid,$this->Fields[$ctag->GetAtt('name')]);
- }
- else
- {
- $this->dtp->Assign($tagid,"");
- }
- }
- else if($tagname=="channel")
- {
- //下级频道列表
- if($this->TypeID>0)
- {
- $typeid = $this->TypeID; $reid = $this->TypeLink->TypeInfos['reid'];
- }
- else
- {
- $typeid = 0; $reid=0;
- }
- $GLOBALS['envs']['typeid'] = $typeid;
- $GLOBALS['envs']['reid'] = $typeid;
- $this->dtp->Assign($tagid,lib_channel($ctag,$this));
- }//End if
- elseif($tagname=="arclist")//这是笔者自己加的代码只要加上这行代码我们就能调用“acrlist”标签
- {
- MakeOneTag($this->dtp,$this);
- }//开源软件:phpfensi.com
- }
- global $keyword, $oldkeyword;
- if(!emptyempty($oldkeyword)) $keyword = $oldkeyword;
- $this->dtp->Display();
- }
只要把代码中加注释的那段语句加入arc.searchview.class.php文件里就可以实现搜索页面调用文章.
Tags: dedecms搜索页面 dedecms调用 文章
相关文章
- ·dedecms调用tag标签实现方法与详解分析(2014-10-17)
- ·在首页调用指定一篇文章的body(2014-11-01)
- ·dedecms 调用图集中第一张大图而非缩略图方法(2014-11-05)
- ·dedecms 添加评论(2014-11-05)
- ·DEDECMS调用字段过滤掉Html标签,并且截取字符串长度 (2014-11-06)
- ·DedeCMS调用子栏目缩略图 (2014-11-06)
- ·Dedecms怎么在首页调用最新评论(2014-11-07)
- ·dedecms中首页调用专题的方法V5.7(2014-11-07)
- ·dedecms首页调用单页面内容的方法(2014-11-09)
- ·DEDECMS调用栏目名和栏目里的文章数(2014-11-09)
- ·dedecms调用图集图片的注释(2014-11-12)
- ·DEDECMS(织梦)单页面怎么做 怎么在首页调用(2014-11-13)
- ·dedecms5.7中如何在首页调用评论呢?(2014-11-13)
- ·DEDECMS垮站调用内容达成(2014-11-13)
- ·坑爹的dedecms指定调用栏目标签正确写法(2014-11-13)
- ·dedecms 调用 UCenter Home会员sql语句(2015-04-04)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)