Discuz 模板帖子列表今日发帖红色显示,24 小时蓝色显示
修改方法都一样!

第一步、修改 forumdisplay.php
找到:

  1. $thread['dateline'] = gmdate($dateformat, $thread['dateline'] + $timeoffset * 3600);

上面添加:

  1. $thread['today'] = $thread[dateline];

第二步、修改 templates/default/forumdisplay.htm
找到:

  1. <em>$thread[dateline]</em>

替换为:

  1. <!--{if (($times**p-$thread['today'])<43200)}-->
  2. <font color=red>$thread[dateline]</font>
  3. <!--{elseif (($times**p-$thread['today'])>43200) && (($times**p-$thread['today'])<86400)}-->
  4. <font color=blue>$thread[dateline]</font>
  5. <!--{else}-->$thread[dateline]<!--{/if}-->