Hey all! First of all, it's a pleasure to meet everyone and I thank everyone in advance who attempts to help me.
Now before you assume I mean an image in an article. I am talking about a site like this.
The images on the main pages aren't clickable and the only way to move to the article in question is via the link above or the more button below.
I've browsed the php files and I found the following line:
'<div class="post-headings">
<span class="meta">by <?php the_author_posts_link(); ?> _ <?php the_time('F d, Y'); ?> <?php edit_post_link(__('« edit »')); ?></span>
<h2>" title="Continue reading <?php the_title_attribute(); ?>"><?php cut_the_title($post->ID); ?></h2>
<span class="meta">Posted in <?php the_category(', ') ?></span>
</div>
<?php if(catch_first_image()): ?>
<?php echo catch_first_image(); ?>
<?php endif; ?>
<?php the_excerpt(); ?>'
I notice the "catch_first_image" area and for the life of me I cannot figure out what to put in that vicinity to make sure each image that it "catches" makes the image clickable to the appropriate post. Any suggestions?
Thanks!