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 View";
}
return $count.' Views';
}
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);
}
}


Yukarıda ki kodları attıktan sonra şimdi ise konu veya sayfa görüntülenme sayısını nerede göstermek istiyorsanız aşağıda vereceğim kodları istediğiniz yere atın.Normalde single.php,sidebar.php veya page.php içine atılır.Siz nerede göstermek istiyorsanız oraya atın kodları.

setPostViews(get_the_ID());
?>
echo getPostViews(get_the_ID());
?>


Yukarıda ki kodları attıktan sonra sayfa görüntülenme sayacı aktif olacaktır.Örnek görmek isterseniz şuan benim sitemde kullanılan okunma sayısı bölümüdür.Şimdilik bu kadar soru ve sorunlarınız için konu altına yorum yapmanız uygundur.

kaynak