Get thumbnail / Feature image

 <?php
if (has_post_thumbnail( $post->ID )){
    $image = wp_get_attachment_image_src(get_post_thumbnail_id($post->ID), 'full');
    $image_src = $image[0];
}
?>