原文来自:https://www.zixuephp.com
织梦dedecms子栏目中怎么调用其所属顶级栏目的名称和简介
顶级栏目的名称及链接:
- {dede:fieldname='id'runphp="yes"}
- global$cfg_basehost,$cfg_cmspath,$cfg_indexurl;
- $dsql=newDedeSql(false);
- $a="SELECTtp.reidFROMdede_arctypeastpwheretp.id=@me";
- $arcRow=$dsql->GetOne($a);
- @me="$arcRow[reid]";
- if(@me==0)@me='首页';
- else{$b="SELECT*FROMdede_arctypeastpwheretp.id=@me";
- $tpRow=$dsql->GetOne($b);
- @me=''.$tpRow[typename].'';
- $url=$cfg_basehost.$cfg_cmspath;
- @me=str_replace('{cmspath}',$url,@me);
- }
- $dsql->Close();