Hello,
Tu devrais essayer avec avec get_the_post_thumbnail()
La doc donne tjs de bonnes infos, parcours la en diagonal au moins.
En gros à la fin de la doc ils te dissent comment choisir la taille:
get_the_post_thumbnail($post_id, 'thumbnail'); // Thumbnail
get_the_post_thumbnail($post_id, 'medium'); // Medium resolution
get_the_post_thumbnail($post_id, 'large'); // Large resolution
get_the_post_thumbnail($post_id, 'full'); // Original resolution
get_the_post_thumbnail($post_id, array(100,100) ); // Other resolutions
donc ça te donne ;
$thumb = get_the_post_thumbnail($post_id, 'full');
voili