The issue at hand is that only the image of the latest post is being displayed. Every link should show the image corresponding to its respective post.
jQuery(document).ready(function() {
var link = $('h2.topic-title > a').attr('href');
jQuery.get(link, function(data) {
imglink = jQuery('.wrap .post .entry-content div img', data).attr('src');
jQuery('h2.topic-title > a').after('<div class="verimg"><img src="' + imglink + '" /></div>');
});});
My intention is for each post to have its own image displayed next to the link. However, it seems to be showing the same image for all posts.