首页 > 教程 >

dedecms调用当前文档所在栏目链接和栏目名称

2023-03-03教程围观

简介在内容页模板时,可直接用织梦dedecms{dede:field.typename/}来表示当前文档的栏目名称,但却无法使用{dede:field.typeurl/}形式来调用栏目链接,该方法同时支持DedeV5.5/5.6/5.7,不区分程序编码。解决办法第一步:打开/include/arc.archives.class.php文件,找到约241行如下代码//设置全局环境变量$this->Fie

  
 在内容页模板时,可直接用织梦dedecms  {dede:field.typename/} 来表示当前文档的栏目名称,但却无法使用 {dede:field.typeurl/} 形式来调用栏目链接,该方法同时支持DedeV5.5/5.6/5.7,不区分程序编码。
解决办法
第一步:打开 /include/arc.archives.class.php 文件,找到约241行如下代码
//设置全局环境变量
$this->Fields['typename'] = $this->Type ->TypeInfos['typename'];
在其下一行加入如下代码:
//设置全局环境变量
$this->Fields['type '] = $this->Type ->GetOneType ($this->Type ->TypeInfos);
$this->Fields['typeurl'] = $this->Type ->GetOneTypeUrl($this->Type ->TypeInfos);
第二步:在你的内容页模板适当位置加入调用代码
{dede:field.type /} 带链接的栏目名称,显示:<a href="栏目链接地址">栏目名称</a>
{dede:field.typeurl/} 仅栏目链接,显示: /news 。

下载链接:网站源码/小程序源码/网站模板下载

Tags: 名称 文档 调用 当前 栏目