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