handsome主题右侧边栏加上加载耗时显示。

效果如下:

添加方法:
将代码添加至主题/themes/handsome/libs/content.phpclass content{ 这行上面:

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

示例图:

然后在 sidebar.php 文件中添加显示代码;
文件位置在/usr/themes/handsome/component/sidebar.php

   <li class="list-group-item text-second"> <span class="blog-info-icons"> <i data-feather="rotate-cw"></i></span> <span class="badge
   pull-right"><?php echo timer_stop();?></span><?php _me("加载耗时") ?></li>

示例图:

End

本文标题:Typecho handsome主题给网站添加加载耗时显示

本文链接:https://moekid.com/archives/102/

除非另有说明,本作品采用知识共享署名-非商业性使用-相同方式共享 4.0 国际许可协议

声明:转载请注明文章来源。

Last modification:December 15th, 2021 at 07:51 pm
如果觉得我的文章对你有用,请随意赞赏