$team_thumb = wp_get_attachment_image_src( get_post_thumbnail_id(get_the_ID()), 'full' );
$team_thumb_url = $team_thumb['0'];
$thumb_html = apply_filters( 'team_filter_team_member_thumbnail', '<img src="'.$team_thumb_url.'" />' );
?>
<div class="team-thumb"><?php echo $thumb_html; ?></div>
// Display photo
if (!empty($member['_tmm_photo_url']))
$output .= '<a '.$tmm_plb.' href="'.$member['_tmm_photo_url'].'" title="'.$member['_tmm_firstname'].' '.$member['_tmm_lastname'].'">';
if (!empty($member['_tmm_photo']))
$output .= '<div class="tmm_photo tmm_phover_'.$name.'_'.$key.'" style="background: url('.$member['_tmm_photo'].'); margin-left:auto; margin-right:auto; background-size:cover !important;"></div>';
if (!empty($member['_tmm_photo_url'])) $output .= '</a>';