Jake Vanderwerf
2026-03-29 275c0d74cd68677622a5431505c5c870c473063d
inc/helpers/renderFields.php
@@ -231,7 +231,7 @@
        foreach ($specialties as $specialty) {
            $out .= '<li><b>'.$specialty['specialty'].'</b>';
            if ($specialty['description'] !== '') {
                $out .= apply_filters('the_content', $specialty['description']);
                $out .= jvb_filter_content( $specialty['description']);
            }
            $out .= '</li>';
        }
@@ -308,7 +308,7 @@
            if ($review['review'] === '') {
                continue;
            }
            $out .= '<li><blockquote>'.apply_filters('the_content', $review['review']);
            $out .= '<li><blockquote>'.jvb_filter_content( $review['review']);
            if ($review['name'] !== '' || $review['rating'] !== 'none') {
                $date = $aOpen = $aClose = '';
                if ($review['url']) {
@@ -354,7 +354,6 @@
   }
}
function jvbRenderTermList(array|bool|WP_Error $terms, string $label = ''):string {
    if (!$terms || is_wp_error($terms) || empty($terms)) {
        return '';