Wordpress - Content Management
What will the following code output if the current post has a featured image?
if (has_post_thumbnail()) {
the_post_thumbnail('medium');
} else {
echo 'No image';
}