the_ID();
?>
" <?php 
post_class();
?>
>

    <div class="wpcm-player-info wpcm-row">

	    <div class="wpcm-profile-image">
			
			<?php 
if (has_post_thumbnail()) {
    echo the_post_thumbnail('player_single');
} else {
    echo apply_filters('wpclubmanager_single_staff_image', sprintf('<img src="%s" alt="Placeholder" />', wpcm_placeholder_img_src()), $post->ID);
}
?>

		</div>

		<div class="wpcm-profile-meta">

			<h1 class="entry-title"><?php 
the_title();
?>
</h1>

			<?php 
//$season = '0';
?>
/**
 * Get the crest placeholder image
 *
 * @access public
 * @return string
 */
function wpcm_crest_placeholder_img($size = 'crest-small')
{
    return apply_filters('wpclubmanager_crest_placeholder_img', '<img src="' . wpcm_placeholder_img_src() . '" alt="Placeholder" width="25" class="wpclubmanager-crest-placeholder wp-post-image" height="25" />');
}