File size: 181 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 |
export function shouldShowComments( post ) {
if ( post.discussion && ( post.discussion.comments_open || post.discussion.comment_count > 0 ) ) {
return true;
}
return false;
}
|