DedeCmsCMS搜索页面不能使用arclist等标签怎么办 DedeCms网站建站教程

凤凰 2021-1-19 85 1/19

DedeCmsCMS搜索页面不能使用arclist等标签怎么办 DedeCms网站建站教程

dedecms搜索页面不能使用arclist等标签怎么办?

本文实例讲述了dedecms搜索页面不能使用arclist等标签的解决方法。分享给大家供大家参考。具体方法如下:

这里讲述dedecms模板搜索页search.php支持arclist和channelartlist标签调用的方法,步骤如下:

打开include/arc.searchview.class.php.

查找:

代码如下:

require_once(DEDEINC."/taglib/hotwords.lib.php"); 
require_once(DEDEINC."/taglib/channel.lib.php");

下面插入

代码如下:

require_once(DEDEINC."/taglib/arclist.lib.php"); 
require_once(DEDEINC."/taglib/channelartlist.lib.php");

查找

代码如下:

else if($tagname=="hotwords") 
{ 
$this->dtp->Assign($tagid,lib_hotwords($ctag,$this)); 
}

下面插入

代码如下:

else if($tagname=="arclist") 
{ 
$this->dtp->Assign($tagid,lib_arclist($ctag,$this)); 
} 
else if($tagname=="channelartlist") 
{ 
$this->dtp->Assign($tagid,lib_channelartlist($ctag,$this)); 
}

以上就是dedecms搜索页面不能使用arclist等标签怎么办的详细内容,更多请关注本站其它相关文章!

- THE END -
Tag:

凤凰

1月19日09:21

最后修改:2021年1月19日
0

非特殊说明,本博所有文章均为博主原创。