Website is:
https://michaelpfaff.com
There are three images at the bottom (the feature images). I want the images to be clickable with a link that goes to the page for that “section”.
Right now, you have to click the “read more…” to get there.
I think this is the code that draws the image:
<?php if (inkthemes_get_option('inkthemes_img1') != '') { ?>
<img src="<?php echo inkthemes_get_option('inkthemes_img1'); ?>" alt="feature image"/>
<?php } else { ?>
<img src="<?php echo get_template_directory_uri(); ?>/images/featureimg-1.png"/>
<?php } ?>
I’ve tried simply putting an a href tag around it, but it doesn’t work.
Any help would be greatly appreciated.