DedeCMS織夢模板搜索頁支持dede標簽調(diào)用的修改方法:
dede模板搜索頁的php文件是search.php,我們要使搜索頁支持dede標簽就得修改這個文件 織夢模板團
下面我們來說說讓搜索頁支持arclist和channelartlist標簽調(diào)用的方法
打開/include/arc.searchview.class.php文件
找到
<span style="font-size:14px;">require_once(DEDEINC.”/taglib/hotwords.lib.php”);
require_once(DEDEINC.”/taglib/channel.lib.php”);</span>
在它下面加入
<span style="font-size:14px;">require_once(DEDEINC.”/taglib/arclist.lib.php”);
require_once(DEDEINC.”/taglib/channelartlist.lib.php”);</span>
再找到
<span style="font-size:14px;">else if($tagname==”hotwords”)
{
$this->dtp->Assign($tagid,lib_hotwords($ctag,$this));
}</span>
在它下面加入
<span style="font-size:14px;">else if($tagname==”arclist”)
{
$this->dtp->Assign($tagid,lib_arclist($ctag,$this));
}
else if($tagname==”channelartlist”)
{
$this->dtp->Assign($tagid,lib_channelartlist($ctag,$this));
}</span>