Home › Support Forums › Theme Support › Pinboard › Image post: image isn't linked to the entry – Solution? › Reply To: Image post: image isn't linked to the entry – Solution?
Daniel Tara
Keymaster
For both cases you can change this in functions.php function pinboard_post_image() and pinboard_post_gallery() respectively, replace any instance of:
$image = wp_get_attachment_image_src( $attachment->ID, 'full' ); echo $image[0];
with this:
the_permalink();