WordPress’te Eklentisiz Sayfa Kaç Kez Okundu (Views) Gösterme

WordPress siteleri için  gerekli bir özellik olan sayfa ziyaretçi sayısı gösterimi, orjinal adıyla The Views yani konunun kaç kez okunduğunu gösteren işlemi eklentisiz olarak yapmak mümkün Önce aşağıda görmüş olduğunuz kodu temanızda olan functions.php bulun ve bu kodu yapıştırın.  

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);
}
}
  Ardından aşağıda ki kodu single.php veya page.php içerisinde nerde görünmesini istiyorsanız oraya yapıştırıyorsunuz;

  İşlemimiz bu kadar.. Artık sitenizde eklentiye ihtiyaç duymadan konu ya da sayfalarınız kaç kez görüntülenmiş öğrenebilirsiniz..



2393 kez görüntülendi


Diğer Makaleler

Codeigniter ile web sayfanıza canonical link verme

Codeigniter ile web sayfanıza…

Görüntüle

Wordpress Temel Tema Kodları

1- Kod: Tema Url Kodu 2- Kod:…

Görüntüle

Siteni Arama Motoruna Ücretsiz Kaydet Siteni 130 Arama Motoruna Ücretsiz Kaydet

Siteni tek tıklamayla 130 Arama…

Görüntüle