1. 開啟 source/module/forum/forum_forumdisplay.php 檔案,找到第 743 行 $threadids[$threadindex] = $thread['tid']; 。在下面新增如下程式碼

//獲得帖子欄目名
$cur_forum = C::t('forum_forum')->fetch_info_by_fid($thread['fid']);
$thread['name'] = $cur_forum['name'];

2. 開啟 template/default/forum/forumdisplay_list.htm 檔案,在需要呼叫的帖子所在版塊名稱的地方直接呼叫即可。  帖子所在版塊名稱:$thread[name]
 
By ghostsf