Skip to content
This repository has been archived by the owner on Jul 25, 2023. It is now read-only.

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

Open
ooclaar opened this issue Jun 12, 2016 · 1 comment
Open

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

ooclaar opened this issue Jun 12, 2016 · 1 comment

Comments

@ooclaar
Copy link

ooclaar commented Jun 12, 2016

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

@jkopec
Copy link

jkopec commented Sep 10, 2016

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.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants