Advertisement
Guest User

Untitled

a guest
Nov 21st, 2014
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. function wpb_set_post_views($postID) {
  2. $count_key = 'wpb_post_views_count';
  3. $count = get_post_meta($postID, $count_key, true);
  4. if($count==''){
  5. $count = 0;
  6. delete_post_meta($postID, $count_key);
  7. add_post_meta($postID, $count_key, '0');
  8. }else{
  9. $count++;
  10. update_post_meta($postID, $count_key, $count);
  11. }
  12. }
  13. //To keep the count accurate, lets get rid of prefetching
  14. remove_action( 'wp_head', 'adjacent_posts_rel_link_wp_head', 10, 0);
  15.  
  16. week_count: integer
  17. current_week: datetime
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement