WordPress-Post-Like-System icon indicating copy to clipboard operation
WordPress-Post-Like-System copied to clipboard

How do I show only the count? Without the icon?

Open ooclaar opened this issue 8 years ago • 1 comments

How do I show only the count? Without the icon?

ooclaar avatar Jun 12 '16 17:06 ooclaar

The following worked for me:

$like_count = get_post_meta( get_the_ID(), "_post_like_count", true );
$like_count = ( isset( $like_count ) && is_numeric( $like_count ) ) ? $like_count : 0;
echo $like_count;

Just paste this somewhere inside your wordpress-loop.

jkopec avatar Sep 10 '16 15:09 jkopec