I've enabled my theme with the ability to display the "Featured Image" for the post. However, I'm trying now to determine (1) How to assign a hyperlink to the image and (2) How to call the_post_thumbnail() so that it wraps the hyperlink around the image.
I can't find where this is supported in the current release of WP, but I'm thinking that I must just be missing something.
<div class="entry">
<?php if(has_post_thumbnail() && get_option('theme_show_featured_image'))
the_post_thumbnail('large', array(
'class' => 'alignleft',
'style' => 'margin:0 10px 10px 0;')); ?>
<?php the_content('<p class="serif">Read the rest of this page »</p>'); ?>
