';
foreach ($reviews as $review) {
$postId = $review->comment_post_ID;
$cAuthor = $review->comment_author;
$cComment = $review->comment_content;
$truncate_comment = strlen($cComment) > 130 ? substr($cComment, 0, 130) . '...' : $cComment;
$linkPostId = get_the_permalink($postId);
$imagePost = get_the_post_thumbnail_url($postId);
$should_show = get_comment_meta($review->comment_ID, 'featured', true);
if ($should_show) {
$content .= '
';
}
}
$content .= '








