- 雪籽
- 23 粒
- 雪花
- 61 片
- 雪球
- 0 个
- 阅读权限
- 255
- 最后登录
- 2023-4-29
  
|
首页板块显示最后回复帖子标题
打开discuz模板 将- <p>{lang forum_lastpost}:
- <!--{if is_array($forum['lastpost'])}-->
- <a href="redirect.php?tid=$forum[lastpost][tid]&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>
- <!--{else}-->
- {lang never}
- <!--{/if}-->
- </p>
复制代码 修改为- <dd>
- <a href="redirect.php?tid=$forum[lastpost][tid]&goto=lastpost#lastpost" style="color: #369;">{echo cutstr($forum[lastpost][subject], 30)}</a>
- <cite>
- <span>
- <!--{if is_array($forum['lastpost'])}-->
- $forum[lastpost][dateline]
- <!--{else}-->
- {lang never}
- <!--{/if}-->
- </span>
- <!--{if $forum['lastpost']['author']}-->$forum['lastpost']['author']<!--{else}-->{lang anonymous}<!--{/if}-->
- </cite>
- </dd>
复制代码 |
|