打开 source/module/forum/forum_viewthread.php 文件,查找:

  1. m.groupid, m.adminid,

后面添加 (注意 前面有个空格)

  1. m.groupexpiry,

再查找:

  1. $post['lastdate'] = dgmdate($post['lastactivity'], 'd');

下面添加:

  1.                 //用户组有效期 by www.12345.la Fieah
  2.                 $post['groupexpiry'] = $post['groupexpiry']
    && in_array($post['groupid'], array(17)) ? gmdate('Y-n-j',
    $post['groupexpiry'] + $timeoffset * 3600) : '';

里面的 array(17),里面的 17 是用户组 id,自己修改

保存覆盖回去

再打开 templates/default/forum/viewthread_node.htm,找到

  1. <p><em><a
    href="home.php?mod=spacecp&ac=usergroup&gid=$post[groupid]"
    target="_blank">{$post[authortitle]}</a></em></p>

下面添加:

  1.                         <!--{if $post['groupexpiry']}--><p> 有效期至 $post['groupexpiry']</p><!--{/if}-->