lostyazilim
tr.link

Wp Yazıyı Kaç Kişi Okudu

6 Mesajlar 5.041 Okunma
lstbozum
tr.link

msdselim msdselim tryemek.net Kullanıcı
  • Üyelik 15.08.2014
  • Yaş/Cinsiyet 25 / E
  • Meslek Öğrenci
  • Konum Konya
  • Ad Soyad M** D**
  • Mesajlar 2046
  • Beğeniler 493 / 197
  • Ticaret 28, (%100)
Arkadaşlar wpde bir yazıyı kaç kişinin okuduğunu nasıl görebiliriz acaba teşekkürler
 

 

wmaraci
reklam

oorka oorka WM Aracı Kullanıcı
  • Üyelik 14.12.2013
  • Yaş/Cinsiyet 53 / E
  • Meslek serbest
  • Konum Hatay
  • Ad Soyad M** T**
  • Mesajlar 664
  • Beğeniler 36 / 101
  • Ticaret 5, (%100)
Wp postview eklentisi ile
msdselim

kişi bu mesajı beğendi.

msdselim msdselim tryemek.net Kullanıcı
  • Üyelik 15.08.2014
  • Yaş/Cinsiyet 25 / E
  • Meslek Öğrenci
  • Konum Konya
  • Ad Soyad M** D**
  • Mesajlar 2046
  • Beğeniler 493 / 197
  • Ticaret 28, (%100)

oorka adlı üyeden alıntı

Wp postview eklentisi ile


teşekkürler
 

 

oorka oorka WM Aracı Kullanıcı
  • Üyelik 14.12.2013
  • Yaş/Cinsiyet 53 / E
  • Meslek serbest
  • Konum Hatay
  • Ad Soyad M** T**
  • Mesajlar 664
  • Beğeniler 36 / 101
  • Ticaret 5, (%100)


onemli degil
 

 

wmaraci
wmaraci

TEHET TEHET Kullanıcı
  • Üyelik 04.10.2014
  • Yaş/Cinsiyet 32 / E
  • Meslek Tasarımcı
  • Konum Ankara
  • Ad Soyad M** A**
  • Mesajlar 791
  • Beğeniler 96 / 374
  • Ticaret 1, (%100)
Eklentisiz olarak:

Functions.php dosyasının en altındaki "?>" kodunun üstüne ekle:


// function to display number of posts.
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 to 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);
}
}




Nerede görüntülemek istiyorsan da aşağıdaki iki koddan birisini kullanman yeterli.




Admin panelinde yazılar kısmında da görüntüleme sayısını göstermek istiyorsan functions.php dosyasına eklediğin kodun hemen altına aşağıdaki kodu eklemen yeterli.


// Add it to a column in WP-Admin
add_filter('manage_posts_columns', 'posts_column_views');
add_action('manage_posts_custom_column', 'posts_custom_column_views',5,2);
function posts_column_views($defaults){
$defaults['post_views'] = __('Views key key ');
return $defaults;
}
function posts_custom_column_views($column_name, $id){
if($column_name === 'post_views'){
echo getPostViews(get_the_ID());
}
}
 

 

msdselim msdselim tryemek.net Kullanıcı
  • Üyelik 15.08.2014
  • Yaş/Cinsiyet 25 / E
  • Meslek Öğrenci
  • Konum Konya
  • Ad Soyad M** D**
  • Mesajlar 2046
  • Beğeniler 493 / 197
  • Ticaret 28, (%100)

TEHET adlı üyeden alıntı

Eklentisiz olarak:

Functions.php dosyasının en altındaki "?>" kodunun üstüne ekle:


// function to display number of posts.
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 to 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);
}
}




Nerede görüntülemek istiyorsan da aşağıdaki iki koddan birisini kullanman yeterli.




Admin panelinde yazılar kısmında da görüntüleme sayısını göstermek istiyorsan functions.php dosyasına eklediğin kodun hemen altına aşağıdaki kodu eklemen yeterli.


// Add it to a column in WP-Admin
add_filter('manage_posts_columns', 'posts_column_views');
add_action('manage_posts_custom_column', 'posts_custom_column_views',5,2);
function posts_column_views($defaults){
$defaults['post_views'] = __('Views key key ');
return $defaults;
}
function posts_custom_column_views($column_name, $id){
if($column_name === 'post_views'){
echo getPostViews(get_the_ID());
}
}

teşekkürler
 

 

Site Ayarları
  • Tema Seçeneği
  • Site Sesleri
  • Bildirimler
  • Özel Mesaj Al