本帖最后由 cr180 于 2011-10-9 21:59 编辑
第二步,在各个文件中加入处理函数
注意:需要在那个页面中用这个就只需要做相应的步骤,不用全部都做完
(1)论坛主题列表页
打开文件:source\module\forum\forum_forumdisplay.php
查找:
- if(in_array($thread['displayorder'], array(1, 2, 3, 4))) {
复制代码
在上面增加:
- $thread['author'] = cr180groupidcolor($thread['author'],$thread['authorid']);
- $thread['lastposter'] = cr180groupidcolor($thread['lastposter']);
复制代码
(2)论坛帖子阅读页
打开文件:source\module\forum\forum_viewthread.php
查找:
- $post['authoras'] = !$post['anonymous'] ? ' '.addslashes($post['author']) : '';
复制代码
下面增加:
- $post['author'] = cr180groupidcolor($post['author'],$post['authorid']);
复制代码
(3)家园模块首页
打开文件:source\function\function_feed.php
查找:
- $searchs[] = '{actor}';
- $replaces[] = empty($actors)?"<a href="home.php?mod=space&uid=$feed[uid]" target="_blank">$feed[username]</a>":implode(lang('core', 'dot'), $actors);
复制代码
上面增加:
- $feed['username'] = cr180groupidcolor($feed['username'],$feed['uid']);
复制代码
|