/**
* Change featured image Alt text
*/
add_filter( 'wp_get_attachment_image_attributes', 'tl_add_img_title', 10, 2 );
// Add title attribute to featured image
function tl_add_img_title( $attr, $attachment = null){
$attr['title'] = get_post( $attachment->ID )->post_title;
return $attr;
}