Created
October 31, 2013 12:10
-
-
Save ElmahdiMahmoud/7248642 to your computer and use it in GitHub Desktop.
wp: Get post views
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /* functions.php */ | |
| 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 View"; | |
| } | |
| return $count.' Views'; | |
| } | |
| 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); | |
| } | |
| } | |
| ?> | |
| <!-- single.php --> | |
| <?php setPostViews(get_the_ID()); ?> | |
| <!-- place it where you want to display views! --> | |
| <?php echo getPostViews(get_the_ID()); ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment