为添加Handsome添加加载时间
本文最后更新于 1423 天前,其中的信息可能已经有所发展或是发生改变。

添加方法

首先在主题的 functions.php 文件里加入以下统计代码;

//加载耗时
    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;
    }

Screenshot_20201213_165526.png

然后在 sidebar.php 文件中添加显示代码;

如果是 handsome 主题,那么文件位置在/usr/themes/handsome/component/sidebar.php

<li class="list-group-item"> <i class="glyphicon glyphicon-time text-muted"></i> <span class="badge
pull-right"><?php echo timer_stop();?></span><?php _me("加载耗时") ?></li>

Screenshot_20201213_165600.png

部分参考自SunPma'Blog

上一篇
下一篇