File size: 131 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 |
export function shouldShowLikes( post ) {
if ( post && post.site_ID && ! post.is_external ) {
return true;
}
return false;
}
|
1e92f2d |
1 2 3 4 5 6 7 8 |
export function shouldShowLikes( post ) {
if ( post && post.site_ID && ! post.is_external ) {
return true;
}
return false;
}
|