Loading... 很过同学在访问其他博客的时候,他们都有**页面总访客**还有**页面加载总耗时**的统计代码,那这个功能该如何实现呢? 本文以**handsome**主题配置为例。 ## 打开Typecho的后台管理页面 选择控制台 - 外观 - 编辑当前外观 - 选择模板文件:"functions_mine.php" 写入以下代码: ```php // ... 省略其他代码 //总访问量 function theAllViews() { $db = Typecho_Db::get(); $row = $db->fetchAll('SELECT SUM(VIEWS) FROM `typecho_contents`'); echo number_format($row[0]['SUM(VIEWS)']); } //加载耗时 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; } ``` ![修改代码](https://www.jbea.cn/usr/uploads/2021/12/2750385805.png) ## 编辑模块组件文件 定义好方法之后,现在需要打开模块组件,文件目录为:\\usr\\themes\\handsome\\component\\sidebar.php **(这个文件是侧边栏组件)**,滑动至100行左右,添加如下代码即可: ```html <li class="list-group-item text-second"> <span class="blog-info-icons"> <i data-feather="eye"></i> </span> <span class="badge pull-right"> <?php echo theAllViews();?> </span> <?php _me("访问人数") ?> </li> <li class="list-group-item text-second"> <span class="blog-info-icons"> <i data-feather="clock"></i> </span> <span class="badge pull-right"> <?php echo timer_stop();?> </span> <?php _me("加载耗时") ?> </li> ``` ## 运行效果 最终的效果图如下所示: ![运行效果](https://www.jbea.cn/usr/uploads/2021/12/4042575963.png) --- 分享结束~ 最后修改:2021 年 12 月 30 日 © 允许规范转载 赞 1 都滑到这里了,不点赞再走!?