Home › Forums › WTI Like Post PRO › How to display like count on post lists? › Reply To: How to display like count on post lists?
February 16, 2014 at 1:39 am
#60
Webtechideas
Keymaster
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