使用yilia主题

让你的博客更加好看

添加阅读量
添加访问量统计
隐藏power链接

添加阅读量

在yilia主题下layout/_partial下的的article.ejs
添加以下代码

<% if ( !index ){ %>
		<span class="archive-article-date">
			阅读量 <span id="busuanzi_value_page_pv"></span>
		</span>
<% } %>

算法a:pv的方式,单个用户连续点击n篇文章,记录n次访问量。
算法b:uv的方式,单个用户连续点击n篇文章,只记录1次访客数。
位置:</header>后面,部分代码如下

<article id="<%= post.layout %>-<%= post.slug %>" class="article article-type-<%= post.layout %> <%if(index){%> article-index<%}%>" itemscope itemprop="blogPost">
  <div class="article-inner">
    <% if (post.link || post.title){ %>
      <header class="article-header">
        <%- partial('post/title', {class_name: 'article-title'}) %>
        <% if (!post.noDate){ %>
        <%- partial('post/date', {class_name: 'archive-article-date', date_format: null}) %>
        <% } %>
      </header>
	<% if ( !index ){ %>
		<span class="archive-article-date">
			阅读量 <span id="busuanzi_value_page_pv"></span>
		</span>
	<% } %>
    <% } %>
```    

##### 添加访问量统计
打开同一目录下的`footer.ejs`文件,添加以下代码



本站访客数人次

位置:`</footer>`上面,代码如下

```<footer id="footer">
  <div class="outer">
    <div id="footer-info">
    	<div class="footer-left">
    		&copy; <%= date(new Date(), 'YYYY') %> <%= config.author || config.title %>
    	</div>
      	<div class="footer-right">
      		<a href="http://hexo.io/" target="_blank">Hexo</a>  Theme <a href="https://github.com/litten/hexo-theme-yilia" target="_blank">Yilia</a> by Litten
      	</div>
    </div>
  </div>
<script async src="//dn-lbstatics.qbox.me/busuanzi/2.3/busuanzi.pure.mini.js"></script>
<span id="busuanzi_container_site_uv"> 
  本站访客数<span id="busuanzi_value_site_uv"></span>人次
</span>
</footer>

隐藏power链接

也是footer.ejs文件

<div class="footer-right">
      	<a href="http://hexo.io/" target="_blank">Hexo</a>  Theme <a href="https://github.com/litten/hexo-theme-yilia" target="_blank">Yilia</a> by Litten
</div>

对这段代码添加注释符<!-- -->

<!--<div class="footer-right">
      	<a href="http://hexo.io/" target="_blank">Hexo</a>  Theme <a href="https://github.com/litten/hexo-theme-yilia" target="_blank">Yilia</a> by Litten
</div>-->

或者

你也可以写自己喜欢的文字上去,比如

<div>
	做自己想做的事~
</div>

效果如下

暂时做到这里,以后如果有看到喜欢的或者有好的想法都会补充


本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 协议 ,转载请注明出处!