Nevermind! I just found a way to do it.
add_filter( 'post_thumbnail_html', 'my_post_image_html', 10, 3 );
function my_post_image_html( $html, $post_id, $post_image_id ) {
$html = '<a href="' . get_permalink( $post_id ) . '">' . $html . '</a>';
return $html;
}
Added to the Theme functions php file.
Thanks for the quick reply! Is there any way an option could be added? Or something put in the php file? Maybe it’s more complicated than I understand but it seems like a fairly simple feature and would be incredibly useful. I really like this theme and would hate to have to change.
Thank you! That’s worked perfectly. Not sure if I need to make a new post but I have a related question: the featured image thumbnails don’t link to the post on the homepage/catregory pages. Is this a theme option or am I doing something wrong?