I really need help. Do you have any idea for this issue?
Readable code:
function encokizlenenlerhesapla () {
if (is_single ()) {
global $post;
if ($izlenme = get_post_meta ($post->ID, "izlenme", true))
update_post_meta ($post->ID, "izlenme", ++$izlenme);
else
add_post_meta ($post->ID, "izlenme", 1, true);
}
}
add_action ("wp", "encokizlenenlerhesapla");