主题列表显示作者小头像 Discuz! 6.1.0

不指定
时间: 2008/05/21 22:06 | 作者: 小铭铭
打开 templates/default 目录下的模板文件
forumdisplay.htm 找到 :

<td class="author">
                                        <cite>
                                        <!--{if $thread['authorid'] && $thread['author']}-->
                                                <a href="space.php?uid=$thread[authorid]">$thread[author]</a>
                                        <!--{else}-->
                                                <!--{if $forum['ismoderator']}-->
                                                        <a href="space.php?uid=$thread[authorid]">{lang anonymous}</a>
                                                <!--{else}-->
                                                        {lang anonymous}
                                                <!--{/if}-->
                                        <!--{/if}-->
                                        </cite>
                                        <em>$thread[dateline]</em>
                                </td>

替换为:

<td class="author">
                                        <div style="float:left;width:26px;padding-top:4px;">
                                          <img src="http://你的UCenter地址/avatar.php?uid=$thread[authorid]&size=small" class="ava_border" width="24px" height="24px" style="border:1px solid #ccc; padding:2px; margin:0px; background-color:#fff;" />
                                          </div>
                                        <div style="float:left;padding:2px 0px 0px 4px;">
                                        <cite>
                                        <!--{if $thread['authorid'] && $thread['author']}-->
                                                <a href="space.php?uid=$thread[authorid]">$thread[author]</a>
                                        <!--{else}-->
                                                <!--{if $forum['ismoderator']}-->
                                                        <a href="space.php?uid=$thread[authorid]">{lang anonymous}</a>
                                                <!--{else}-->
                                                        {lang anonymous}
                                                <!--{/if}-->
                                        <!--{/if}-->
                                        </cite>
                                        <em>$thread[dateline]</em>
                                        </div>
                                </td>


千万别忘了更换你的UC地址,要不然不显示头像……
| 快乐分享 | 引用(0) | 评论(0) | 阅读(388)