-
Üyelik
05.04.2011
-
Yaş/Cinsiyet
31 / E
-
Meslek
Yazılım Geliştirici
-
Konum
Konya
-
Ad Soyad
İ** U**
-
Mesajlar
4900
-
Beğeniler
1419 / 2962
-
Ticaret
45, (%100)
Kodlarda sıkıntı var hocam.
-
Üyelik
29.08.2011
-
Yaş/Cinsiyet
34 / E
-
Meslek
software developer
-
Konum
ABD
-
Ad Soyad
S** M**
-
Mesajlar
615
-
Beğeniler
52 / 196
-
Ticaret
1, (%100)
Sayfana wp_head ve wp_footer eklersen bu fonksiyonlar çalışır.
query_posts("showposts=1500");
if( have_posts() ) : while( have_posts() ) : the_post();
the_title();
echo " (";
if(function_exists('the_views')) { the_views(); }
echo ")";
endwhile; endif;
wp_reset_query();
React Dersleri YouTube Kanalı
https://www.youtube.com/c/reactdersleri
nega
Siz bilirsiniz..
Kullanıcı
-
Üyelik
17.01.2012
-
Yaş/Cinsiyet
37 / E
-
Meslek
Blogger
-
Konum
Osmaniye
-
Ad Soyad
N** G**
-
Mesajlar
729
-
Beğeniler
404 / 127
-
Ticaret
0, (%0)
Functions.php ye bunu koy
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 "Hiç okunmadı";
}
return $count.' kez okundu';
}
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);
}
}
kaç kez okunduğunu göstermek istediğin yere de bunu
İşine yarar ben kullanıyorum.
Ek Olarak: bu arada bu da bu da son yazıları rss ile çekmek için.
'alttext')); ?>
www.nebigarci.net (Link yok, eski usül kopyala-yapıştır)