由于博主在博客升级之后不再使用 AliceStyle 插件,但是有一些信息还是要保留的,便根据typecho官方的插件教程自己搞了一个,由于插件比较简单,实现起来还是比较容易,本身php也比较容易上手
使用方法
- GitHub 地址
- 代码clone下来之后,将VisitorStatistics文件夹直接放入
/usr/plugins
下 - 进入typecho后台启用插件,在设置中设置初始访问量,默认为0
- 使用方法:
VisitorStatistics_Plugin::getVisitorStatistics();
- 例如,在相应的php页面下加上
<?php echo VisitorStatistics_Plugin::getVisitorStatistics(); ?>
便可输出访客量,如120,622
或者为<?php echo VisitorStatistics_Plugin::getVisitorStatistics('访客量: ',' 次'); ?>
,则输出 访客量: 120,622 次
和 Handsome 主题搭配
- 修改主题页面文件内容:
修改/usr/themes/handsome/component/sidebar.php
,找到这块儿代码(博客信息 section):<ul class="list-group box-shadow-wrap-normal"> <?php Typecho_Widget::widget('Widget_Stat')->to($stat); ?> <li class="list-group-item text-second"><span class="blog-info-icons"> <i data-feather="award"></i></span> <span class="badge pull-right"><?php $stat->publishedPostsNum() ?></span><?php _me("文章数目") ?></li> <?php if (COMMENT_SYSTEM == 0): ?> <li class="list-group-item text-second"> <span class="blog-info-icons"> <i data-feather="message-circle"></i></span> <span class="badge pull-right"><?php $stat->publishedCommentsNum() ?></span><?php _me("评论数目") ?></li> <?php endif; ?> <li class="list-group-item text-second"><span class="blog-info-icons"> <i data-feather="calendar"></i></span> <span class="badge pull-right"><?php echo Utils::getOpenDays(); ?></span><?php _me("运行天数") ?></li> <li class="list-group-item text-second"><span class="blog-info-icons"> <i data-feather="activity"></i></span> <span class="badge pull-right"><?php echo Utils::getLatestTime($this); ?></span><?php _me("最后活动") ?></li> </ul>
在ul里的末尾加上一个li标签:
<li class="list-group-item text-second"><span class="blog-info-icons"> <i data-feather="users"></i></span> <span class="badge pull-right"><?php echo VisitorStatistics_Plugin::getVisitorStatistics(); ?></span><?php _me("访客总数") ?></li>
即:
<ul class="list-group box-shadow-wrap-normal">
<?php Typecho_Widget::widget('Widget_Stat')->to($stat); ?>
<li class="list-group-item text-second"><span class="blog-info-icons"> <i data-feather="award"></i></span> <span
class="badge
pull-right"><?php $stat->publishedPostsNum() ?></span><?php _me("文章数目") ?></li>
<?php if (COMMENT_SYSTEM == 0): ?>
<li class="list-group-item text-second"> <span class="blog-info-icons"> <i data-feather="message-circle"></i></span>
<span class="badge
pull-right"><?php $stat->publishedCommentsNum() ?></span><?php _me("评论数目") ?></li>
<?php endif; ?>
<li class="list-group-item text-second"><span class="blog-info-icons"> <i data-feather="calendar"></i></span>
<span class="badge
pull-right"><?php echo Utils::getOpenDays(); ?></span><?php _me("运行天数") ?></li>
<li class="list-group-item text-second"><span class="blog-info-icons"> <i data-feather="activity"></i></span> <span
class="badge
pull-right"><?php echo Utils::getLatestTime($this); ?></span><?php _me("最后活动") ?></li>
<li class="list-group-item text-second"><span class="blog-info-icons"> <i data-feather="users"></i></span> <span
class="badge
pull-right"><?php echo VisitorStatistics_Plugin::getVisitorStatistics(); ?></span><?php _me("访客总数") ?></li>
</ul>
这里自己还可以 DIY 一些其他信息,图标是 data-feather 这个属性,大家可以去这里替换为其他的
2 条评论
感谢分享,赞一个
为什么访问量一直是0,这个是怎么统计的?(ó﹏ò。)