欢迎来到入门教程网!

dedecms

当前位置:主页 > CMS教程 > dedecms >

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

来源:本站原创|时间:2020-01-11|栏目:dedecms|点击:

本文实例讲述了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();
{/dede:field}

栏目描述:

复制代码
代码如下:
{dede:field name='id' runphp="yes"}
$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[description];
$dsql->Close();
{/dede:field}

希望本文所述对大家的dedecms建站有所帮助。

上一篇:批量删除织梦dedecms文档搜索关键词的方法

栏    目:dedecms

下一篇:dedecms5.7首页和列表页模板中动态调用文章浏览次数的方法

本文标题:dedecms子栏目中调用其顶级栏目名称和简介的方法

本文地址:https://www.xiuzhanwang.com/a1/dedecms/12359.html

网页制作CMS教程网络编程软件编程脚本语言数据库服务器

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:835971066 | 邮箱:835971066#qq.com(#换成@)

Copyright © 2002-2020 脚本教程网 版权所有