说明: 每一主题回复中 每页每一用户只显示一次签名
这是polo!FD2.5的插件 我把它改用在4.0同样适用
版本:4.0
修改: viewthread.php
查找:
- $post['message'] = discuzcode($post['message'], $post['smileyoff'], $post['bbcodeoff'], $post['htmlon'], $forum['allowsmilies'], $forum['allowbbcode'], $forum['allowimgcode'], $forum['allowhtml'], ($forum['jammer'] && $post['authorid'] != $discuz_uid ? 1 : 0));
复制代码
下面加:
- // ----------------------------------------------------------------
- // Signature Once Per Page By Polo!
- // ----------------------------------------------------------------
- $count[$post['authorid']] = $post['usesig'] ? $count[$post['authorid']] + 1 : $count[$post['authorid']];
- $post['signature'] = $count[$post['authorid']] == 1 ? $post['signature'] : NULL;
- // ----------------------------------------------------------------
复制代码
演示就不用了 很简单 |