wordpress网站显示运行时间、加载时间、查询次数、占用内存的代码
[php]<!--wordpress 网站运行时间 begin-->
网站已运行:<span id="run_time" style="color: black;"></span>
<script>
function runTime() {
var d = new Date(), str = '';
BirthDay = new Date("2020-06-03");
today = new Date();
timeold = (today.getTime() - BirthDay.getTime());
sectimeold = timeold / 1000
secondsold = Math.floor(sectimeold);
msPerDay = 24 * 60 * 60 * 1000
msPerYear = 365 * 24 * 60 * 60 * 1000
e_daysold = timeold / msPerDay
e_yearsold = timeold / msPerYear
daysold = Math.floor(e_daysold);
yearsold = Math.floor(e_yearsold);
//str = yearsold + "年";
str += daysold + "天";
str += d.getHours() + '时';
str += d.getMinutes() + '分';
str += d.getSeconds() + '秒';
return str;
}
setInterval(function () {
$('#run_time').html(runTime())
}, 1000);
</script>
<!--wordpress 网站运行时间 end-->
<!--wordpress 加载时间、查询次数、占用内存 begin-->
<?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; }@keyframes change{0%{color:#5cb85c;}25%{color:#556bd8;}50%{color:#e40707;}75%{color:#66e616;}100% {color:#67bd31;}}</style>
<!--wordpress 加载时间、查询次数、占用内存 end-->
[/php]
说明
将上述代码放到 wordpress 主题的模板文件中即可,可根据实际情况调整位置。(一般放在 footer.php中)。
红色部分的日期,修改成你的建站日期。