統計wordpress文章瀏覽次數的外掛

LINEで送る
[`evernote` not found]

為了統計一下各篇文章的瀏覽次數
安裝了WP-PostViews這個外掛
安裝的方是沒啥特別
設定比較麻煩點….
啟動後先在:設定>Post Views>Views Template中改成: 瀏覽: %VIEW_COUNT% 人次
然後在使用的THEME中找到要加入的地方
我是加在category.php,archive.php,index.php,single.php,search.php中

  <p class="postmetadata">
	<?php _e('Posted in&#58;'); ?> 
	<?php the_category(', ') ?> 
	<?php _e('by'); ?> 
	<?php  the_author(); ?>
	<?php _e('&#47;'); ?>
	<?php if(function_exists('the_views')) {the_views(ture); } ?>
	<?php _e('&#47;'); ?>		
	<?php the_tags('Tags: ', ', ', '<br />'); ?>
	<?php edit_post_link('Edit', '&#47; ', ''); ?>
  </p>

1 則迴響於《統計wordpress文章瀏覽次數的外掛

  1. 那如果佈景主題裡面,沒有category.php但其他的都有設定這樣子能正常運作嗎?

    應該是可以阿
    那只是決定出現的地方而已

回應已關閉。