Find below code to get featured image alt tag using post ID.
$thumbnail_id = get_post_thumbnail_id( $post->ID );
$alt = get_post_meta($thumbnail_id, ‘_wp_attachment_image_alt’, true);
Find below code to get featured image alt tag using post ID.
$thumbnail_id = get_post_thumbnail_id( $post->ID );
$alt = get_post_meta($thumbnail_id, ‘_wp_attachment_image_alt’, true);