给你的typecho加上加载时间,
百度能搜索到的基本都用不了放到主题里什么都不输出这个是我从别的主题里面提取出来的代码记录一下。
- 原文来源:仙岛驿站
在主题 functions.php
文件里放入下面代码
/**
* 加载时间
* @return bool
*/
function timer_start() {
global $timestart;
$mtime = explode( ' ', microtime() );
$timestart = $mtime[1] + $mtime[0];
return true;
}
timer_start();
function timer_stop( $display = 0, $precision = 3 ) {
global $timestart, $timeend;
$mtime = explode( ' ', microtime() );
$timeend = $mtime[1] + $mtime[0];
$timetotal = number_format( $timeend - $timestart, $precision );
$r = $timetotal < 1 ? $timetotal * 1000 . " ms" : $timetotal . " s";
if ( $display ) {
echo $r;
}
return $r;
}
然后在主题foot.php
文件需要放加载时间的地方添加加载耗时:<?php echo timer_stop();?>
即可
效果示例:
十分感谢分享,用上了!!