免費論壇 繁體 | 簡體
Sclub交友聊天~加入聊天室當版主
分享

首页板块显示最后回复帖子标题

首页板块显示最后回复帖子标题

打开discuz模板 将
  1.                                                                 <p>{lang forum_lastpost}:
  2.                                                                         <!--{if is_array($forum['lastpost'])}-->
  3.                                                                                 <a href="redirect.php?tid=$forum[lastpost][tid]&amp;goto=lastpost#lastpost" title="{echo cutstr($forum[lastpost][subject], 30)} {lang forum_lastpost_by} {if $forum['lastpost']['author']}$forum['lastpost']['authorusername']{else}{lang anonymous}{/if}  ">$forum[lastpost][dateline]</a>
  4.                                                                         <!--{else}-->
  5.                                                                                 {lang never}
  6.                                                                         <!--{/if}-->
  7.                                                                 </p>
复制代码
修改为
  1. <dd>
  2. <a href="redirect.php?tid=$forum[lastpost][tid]&amp;goto=lastpost#lastpost" style="color: #369;">{echo cutstr($forum[lastpost][subject], 30)}</a>
  3. <cite>
  4. <span>
  5. <!--{if is_array($forum['lastpost'])}-->
  6. $forum[lastpost][dateline]
  7. <!--{else}-->
  8. {lang never}
  9. <!--{/if}-->
  10. </span>
  11. <!--{if $forum['lastpost']['author']}-->$forum['lastpost']['author']<!--{else}-->{lang anonymous}<!--{/if}-->
  12. </cite>
  13. </dd>
复制代码

回到页首 返回列表 回到页末