temanız function.php dosyasına bu kodu ekleyin..
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 "Bu yazı henüz hiç okunmamış!";
}
return $count.' defa okunmuş.';
}
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);
}
}

ardından single.php dosyasına dögü içerisine;

kodu ekleyin ve son olarak;
temanızda single.php veya index.php artık nerede görmek istiyorsanız o alanada
alttaki kodu ekleyin.

kolay gelsin..