DEDECMS5.1 Tag首页文章分类显示
- 2008-07-2
- 分类:PHP&MySql
- 作者:银子
- 483 次查看
dedecms 在5.x版本新增加的 tag 标签.
在首页使用时只有row,sort与InnerText三个参数.而不能像arclist等标签一样可以用typeid参数按文章分类显示.
自己动手.修改了一下
打开 include/inc_arcpart_view.php 文件
首先找到第 222 行
}else if($tagname=="tag"){
//自定义宏标签
if(empty($typeid)) $typeid = $envTypeid;
$this->dtp->Assign($tagid,
$this->GetTags($ctag->GetAtt("row"),$ctag->GetAtt("sort"),$ctag->GetInnerText())
);
修改为:
}else if($tagname=="tag"){
//自定义宏标签
$typeid = trim($ctag->GetAtt("typeid"));
if(empty($typeid)) $typeid = $envTypeid;
$this->dtp->Assign($tagid,
$this->GetTags($ctag->GetAtt("row"),$ctag->GetAtt("sort"),$ctag->GetInnerText(),$typeid)
);
