Home Forums WTI Like Post PRO How to display like count on post lists? Reply To: How to display like count on post lists?

#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