用wordpress 搭建的部落格或企業站都有同樣的需求,就是在內容頁面需要統計這個頁面的瀏覽次數,以方便站長查看某個頁面的仿問題,一般對程式碼不熟悉的朋友都會用到瀏覽次數統計插件(WP-PostViews),但是眾所周知,一個站點如果插件安裝的多了會對SEO優化 非常不利,那麼下面給大家分享一個利用代碼來實現這種瀏覽次數的統計功能。
1、在functions.php函數檔的未尾另起一行,加入如下程式碼。
<?php /* Postviews start */ function getPostViews($postID){ $count_key = 'post_views_count'; $count = get_post_meta($postID, $count_key, true); if($count==''){ delete_post_meta($postID, $count_key); add_post_meta($postID, $count_key, '0'); return " 0 "; } return $count; } function setPostViews($postID) { $count_key = 'post_views_count'; $count = get_post_meta($postID, $count_key, true); if($count==''){ $count = 0; delete_post_meta($postID, $count_key); add_post_meta($postID, $count_key, '0'); }else{ $count++; update_post_meta($postID, $count_key, $count); } } /* Postviews start end*/ ?>
2、在您需要顯示統計瀏覽次數的頁面,例如在single.php內容頁面中的14c48f4d807dd2af600db7ec6469a4b2和
<?php setPostViews(get_the_ID());?>
新增後的顯示,如:
<?php setPostViews(get_the_ID());?>
3、最後在您需要顯示統計的地方加入如下程式碼:
<?php echo getPostViews(get_the_ID()); ?> 次浏览
更多wordpress相關技術文章,請造訪wordpress教學欄位進行學習!
以上是wordpress查詢瀏覽量需要用什麼程式碼的詳細內容。更多資訊請關注PHP中文網其他相關文章!