首页底部加入建站天数统计 for Discuz!4.1
作者:yeego效果:[color=Blue]只在首页底部显示“建站天数:XXX天”,其他页面不显示且该行自动隐藏[/color]
演示:[url=http://www.jiacheng.sh.cn]http://www.jiacheng.sh.cn[/url]
步骤:
1.修改index.php文件,找到:
[code]$newthreads = round(($timestamp - $lastvisit + 600) / 1000) * 1000;[/code]
在下面加入:
[code]$today = mktime (0,0,0,date("m") ,date("d"),date("Y"));
$build_date = mktime (0,0,0,12,23,2004);//请修改后面的三个数字,分别代表你论坛运行第一天的月,日,年。注:如果是2005年1月1日,请输入mktime (0,0,0,1,1,2005),而非mktime (0,0,0,01,01,2005),否则统计不准确。
$build_days = (int)(($today-$build_date)/(24*3600));[/code]
2.修改模版中的footer.htm,找到:
[code]<!--{if debuginfo()}-->
<br>Processed in $debuginfo[time] second(s), $debuginfo[queries] queries<!--{if $gzipcompress}-->, Gzip enabled<!--{/if}-->
<!--{/if}-->[/code]
在下面加入:
[code]<!--{if $build_days}--><br><font color=blue>建站天数</font>:<span class="bold"><font color=RED>$build_days</font></span><font color=blue>天</font><!--{/if}-->[/code]
页:
[1]