Yapmak istediğim şey Aslında aşağıdaki resimde gösterilmiş ;
Yani önizleme butonuna her tıklandığında aşağıdaki sayı artacak.
Yardımcı olan arkadaşlara şimdiden teşekkür ediyorum :)
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 "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);
}
}
$CanCeLcik = file_get_contents("http://www.orneksite.com/sayac.txt");
$CanCeLcik = $CanCeLcik + 1;
$handle = fopen("http://www.orneksite.com/sayac.txt", "w");
fwrite($handle, $CanCeLcik);
fclose($handle);
?>
$CanCeLcik = file_get_contents("http://www.orneksite.com/sayac.txt");
$yazalim=$CanCeLcik . " defa görüntülendi.";
?>