為了統計一下各篇文章的瀏覽次數
安裝了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:'); ?> <?php the_category(', ') ?> <?php _e('by'); ?> <?php the_author(); ?> <?php _e('/'); ?> <?php if(function_exists('the_views')) {the_views(ture); } ?> <?php _e('/'); ?> <?php the_tags('Tags: ', ', ', '<br />'); ?> <?php edit_post_link('Edit', '/ ', ''); ?> </p> |
那如果佈景主題裡面,沒有category.php但其他的都有設定這樣子能正常運作嗎?
那只是決定出現的地方而已