51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

WordPress页脚添加网站稳定运行时长

一、代码部署

**找到wp-content/themes目录主题下的footer.php文件(编辑之前先备份,方便恢复)**文章源自小柒网-https://www.yangxingzhen.cn/2252.html

添加以下代码文章源自小柒网-https://www.yangxingzhen.cn/2252.html

<script type="text/javascript">
function NewDate(str) {
str = str.split('-');
var date = new Date();
date.setUTCFullYear(str[0], str[1] - 1, str[2]);
date.setUTCHours(0, 0, 0, 0);
return date;
}
function momxc() {
var birthDay =NewDate("2017-12-14");
var today=new Date();
var timeold=today.getTime()-birthDay.getTime();
var sectimeold=timeold/1000
var secondsold=Math.floor(sectimeold);
var msPerDay=24*60*60*1000; var e_daysold=timeold/msPerDay;
var daysold=Math.floor(e_daysold);
var e_hrsold=(daysold-e_daysold)*-24;
var hrsold=Math.floor(e_hrsold);
var e_minsold=(hrsold-e_hrsold)*-60;
var minsold=Math.floor((hrsold-e_hrsold)*-60); var seconds=Math.floor((minsold-e_minsold)*-60).toString();
document.getElementById("momk").innerHTML = "本站已安全运行:"+daysold+"天"+hrsold+"小时"+minsold+"分"+seconds+"秒";
setTimeout(momxc, 1000);
}momxc();
</script>
<!--以上为计时功能代码-->
<?php printf(' | 耗时 %.3f 秒 | 查询 %d 次 | 内存 %.2f MB',timer_stop( 0, 3 ),get_num_queries(),memory_get_peak_usage() / 1024 / 1024);?>
<style>
#momk{animation:change 10s infinite;font-weight:800; }<br />@keyframes change{0%{color:#5cb85c;}25%{color:#556bd8;}50%{color:#e40707;}75%{color:#66e616;}100% {color:#67bd31;}}<br /></style>

**效果图如下:**文章源自小柒网-https://www.yangxingzhen.cn/2252.html

文章源自小柒网-https://www.yangxingzhen.cn/2252.html

****文章源自小柒网-https://www.yangxingzhen.cn/2252.html 文章源自小柒网-https://www.yangxingzhen.cn/2252.html
继续阅读

历史上的今天

5 月
22

赞(0)
未经允许不得转载:工具盒子 » WordPress页脚添加网站稳定运行时长