@fjiorea – Sure ??
<?php if ($related_query->have_posts()):?>
<h2>Related</h2>
<ol class="related">
<?php while ($related_query->have_posts()) : $related_query->the_post(); ?>
<?php if (function_exists('yapb_is_photoblog_post')): if (yapb_is_photoblog_post()):?>
<li>
<?php if ($post->image): ?>
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent link to <?php the_title(); ?>">
<img src="<?php echo $post->image->getThumbnailHref(array('q=95','wl=65','hp=65')) ?>" alt="<?php the_title() ?>" title="<?php the_title() ?>" />
</a>
<?php endif ?>
</li>
<?php endif; endif; ?>
<?php endwhile; ?>
</ol>
<?php else: ?>
<?php endif; ?>
Hope it workes out for you ??