Eklenti kurmanıza gerek yok. Yazılarınızın ne kadar gösterim aldığını şunları uygulayarak gösterebilirsiniz.

Tema işlevlerini açın,

Bulun:


Altına 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 "0 View";
}
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);
}
}


signle.php (Tekil yazı veya sizin özel yazı şablonunuz) bölümünü açın,

Herhangi bir yere ekelyin:


Kaç kez görüntülendiğini göstermek istediğiniz yere ekleyin:
Görüntülenme