Skip to content

Instantly share code, notes, and snippets.

@akinayturan
Created February 10, 2015 16:01
Show Gist options
  • Save akinayturan/b83e3ea103c6c930d70c to your computer and use it in GitHub Desktop.
Save akinayturan/b83e3ea103c6c930d70c to your computer and use it in GitHub Desktop.
WP ~ Eklentisiz Yazı Okunma Sayısı & Popüler Yazıları Gösterme
<?php
//WP ~ Eklentisiz Yazı Okunma Sayısı Ve Popüler Yazıları Gösterme //epfarki.com
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 okunma";
}
return $count.' okunma';
}
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);
}
}
?>
<?php setPostViews(get_the_ID()); ?><?php echo getPostViews(get_the_ID()); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment