Wordpress - Content Management
What will be the output of this code snippet when the current post does NOT have a featured image?
if (has_post_thumbnail()) {
the_post_thumbnail('large');
} else {
echo 'Image missing';
}