diff --git a/web/wp-content/themes/cncf-twenty-two/classes/class-lf-utils.php b/web/wp-content/themes/cncf-twenty-two/classes/class-lf-utils.php index 66c50413e..57474d3cb 100644 --- a/web/wp-content/themes/cncf-twenty-two/classes/class-lf-utils.php +++ b/web/wp-content/themes/cncf-twenty-two/classes/class-lf-utils.php @@ -663,7 +663,11 @@ public static function get_teamcloudnative() { $query->the_post(); $person_title = $post->post_title; $person_image_url = wp_get_attachment_image_src( get_post_meta( get_the_ID(), 'lf_human_image', true ), 'newsroom-post-width' )[0]; - $person_profile_link = get_permalink(); + + $person_profile_link = get_post_meta( get_the_ID(), 'lf_human_post_url', true ); + if ( ! $person_profile_link ) { + $person_profile_link = get_permalink(); + } $hocn_people[] = array( 'title' => $person_title,