默認的是 $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']]}