Home › Forums › WTI Like Post PRO › How to display like count on post lists? Tagged: count, list, post, thumb This topic has 1 reply, 2 voices, and was last updated 10 years, 9 months ago by Webtechideas. Viewing 2 posts - 1 through 2 (of 2 total) Author Posts February 16, 2014 at 1:26 am #59 mettacellParticipant I was wondering if its possible to display the like/unlike counts by using a php snippet? Such as to display comment counts by <?php comments_number( $zero, $one, $more ); ?> Any help will be highly appreciated. Thank you February 16, 2014 at 1:39 am #60 WebtechideasKeymaster Yes, its possible by using the following get_post_meta code as below $like_value = get_post_meta($id, '_wti_like_count', true); $unlike_value = get_post_meta($id, '_wti_unlike_count', true); $total_value = get_post_meta($id, '_wti_total_count', true); Here $id is the post id. Thanks Author Posts Viewing 2 posts - 1 through 2 (of 2 total) The forum ‘WTI Like Post PRO’ is closed to new topics and replies.