I would like to display the organizers featured image on the single events page, I’ve figured out how to grab the organizers featured image, but I can’t seem to return the organizer_link around the featured image.
Here’s my code:
$organizer_id = tribe_get_organizer_id();
$image = get_the_post_thumbnail($organizer_id);
<?php echo tribe_get_organizer_link( $post_id, $full_link = false, $echo = $image ); ?>
or
$organizer_id = tribe_get_organizer_id();
$image = get_the_post_thumbnail($organizer_id);
<a href=" ' . echo tribe_get_organizer_link( $post_id, $full_link = false ) . ' " ><?php echo $website; ?></a>
Thanks!