Discuz! 主题分类链接和名称变量调用显示方法

来自:互联网
时间:2018-08-27
阅读:

默认的是 $thread['typehtml'] ,这个是带了html的,形式是<em>[<a href="主题分类链接">主题分类名称</a>]</em>。

在source/module/forum/forum_forumdisplay.php中可看到$thread['typehtml']

$thread['typehtml'] = '<em>[<a href="forum.php?mod=forumdisplay&fid='.$_G['fid'].'&filter=typeid&typeid='.$thread['typeid'].'">'.$_G['forum']['threadtypes']['types'][$thread['typeid']].'</a>]</em>';

当自己制作模板或修改模板时,可以分开使用链接和名称变量,如下:

帖子主题分类链接:forum.php?mod=forumdisplay&fid=$_G[fid]&filter=typeid&typeid={$thread['typeid']}
帖子主题分类名称:{$_G['forum']['threadtypes']['types'][$thread['typeid']]}
返回顶部
顶部