-
Ü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
-
Ü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
1 kişi bu mesajı beğendi.
-
Ü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());
}
}