$next_post = get_next_post();
if($next_post) {
$next_title = strip_tags(str_replace('"', '', $next_post->post_title));
if (has_post_thumbnail($next_post->ID)){
$thumbnail = wp_get_attachment_image_src(get_post_thumbnail_id($next_post->ID), 'thumbnail', false)[0];
}
echo "\t" . '
' . "\n";
}
?>