Skip to content

Instantly share code, notes, and snippets.

@moskalukigor
Created November 11, 2016 14:35
Show Gist options
  • Save moskalukigor/33c07614a3636b3d192d29d74c82bd7f to your computer and use it in GitHub Desktop.
Save moskalukigor/33c07614a3636b3d192d29d74c82bd7f to your computer and use it in GitHub Desktop.
set popularity product
//set popularity product
function wpb_set_post_views($postID) {
$count_key = 'wpb_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);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment