function goruntuleme_goster($postID){
$count_key = 'goruntuleme';
$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 Görüntüleme";
}
return $count.' kez dinlendi.';
}
?>
Kodunda 'kez dinlendi' yerine normalde kullandığım
kodu nasıl aktarabilirim?