dedecms子栏目中调用其顶级栏目名称和简介的方法

顶级栏目名称及链接:

代码如下:

{dede:field name='id' runphp="yes"} global $cfg_basehost,$cfg_cmspath,$cfg_indexurl; $dsql = new DedeSql(false); $a="SELECT tp.reid FROM dede_arctype as tp where tp.id=@me"; $arcRow = $dsql->GetOne($a); @me="$arcRow[reid]"; if(@me==0)@me='首页'; else {$b="SELECT * FROM dede_arctype as tp where tp.id=@me"; $tpRow = $dsql->GetOne($b); @me=''.$tpRow[typename].''; $url=$cfg_basehost.$cfg_cmspath; @me=str_replace('{cmspath}',$url,@me); } $dsql->Close();  

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/c382bb8ab70f318ac95a3e272ca13aa7.html