皆非的万事屋

【Typecho插件】访客量统计 & Handsome 主题右侧信息DIY

由于博主在博客升级之后不再使用 AliceStyle 插件,但是有一些信息还是要保留的,便根据typecho官方的插件教程自己搞了一个,由于插件比较简单,实现起来还是比较容易,本身php也比较容易上手

使用方法

或者为<?php echo VisitorStatistics_Plugin::getVisitorStatistics('访客量: ',' 次'); ?>,则输出 访客量: 120,622 次

和 Handsome 主题搭配

即:

<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 这个属性,大家可以去这里替换为其他的

当前页面是本站的「Google AMP」版。查看和发表评论请点击:完整版 »