Hi.
Would you like display amount for each post…?!
I used this code on my functions.php…
function postfavorited(){
$postfavorited = get_post_meta(get_the_ID(), 'wpfp_favorites', true);
if($postfavorited != ''){
echo $postfavorited .' Favorited'; }
}
}
and in my loop of each post:
<?php postfavorited() ?>