So that section would look like this when complete?
if ( 'inline' == $post_thumb_op || 'after' == $post_thumb_op || 'thumbs_only' == $post_thumb_op ) {
$output .= '<a href="' . get_permalink( $postid ) . '" rel="' . $rel_attribute . '" ' . $target_attribute . ' class="tptn_link">'; // Add beginning of link
$tptn_thumb_class = "tptn_thumb " . implode( " ", wp_list_pluck( $categorys, 'slug' ) );
$output .= tptn_get_the_post_thumbnail( array(
'postid' => $postid,
'thumb_height' => $thumb_height,
'thumb_width' => $thumb_width,
'thumb_meta' => $thumb_meta,
'thumb_html' => $thumb_html,
'thumb_default' => $thumb_default,
'thumb_default_show' => $thumb_default_show,
'scan_images' => $scan_images,
'class' => "tptn_thumb",
'class' => $tptn_thumb_class,
) );
$output .= '</a>'; // Close the link
}