首页 > CMS > 织梦DEDE > 正文

DEDECMS织梦内容页调用seotitle标题的写法

2024-07-12 08:29:45
字体:
来源:转载
供稿:网友
首先方法一,直接用织梦的sql实现:

1<title>2{dede:field name='typeid' runphp='yes'}3$id=@me;4global $dsql;5$sql="select seotitle from dede_arctype where id=$id";6$row=$dsql->getOne($sql);7@me=$row["seotitle"];8{/dede:field}9</title>



第二种方法,需要修改下include/arc.archives.class.php 这个文件,找到:

1$this->Fields['typename'] = $this->TypeLink->TypeInfos['typename'];

在这段的下面添加:

1$this->Fields['seotitle'] = $this->TypeLink->TypeInfos['seotitle'];



调用方法,直接在内容页中写:{dede:field.seotitle/}

不想修改文件直接用第一种方法, 喜欢动手的可以采用第二种方法,个人推荐采用第二种方法。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表