Not an easy way as far as I know.
Here what I use on my site, which shows three suggestions side by side with thumb image.
put this in yarpp-template-arras.php
<?php
if ( $related_query->have_posts() ) {
echo '<br/><h3>Related Articles</h3>';
echo '<ul class="related-posts">';
while ( $related_query->have_posts() ) {
$related_query->the_post();
?>
<li class="clearfix">
<a href="<?php the_permalink() ?>">
<?php echo arras_get_thumbnail( 'quick-preview-thumb', get_the_ID() ) ?><br />
<h6><?php the_title() ?></h6></a>
<span class="sub"><?php the_time( __('d F Y g:i A', 'arras') ); ?><br/>
<?php comments_number( __('No Comments', 'arras'), __('1 Comment', 'arras'), __('% Comments', 'arras') ); ?></span>
<p class="excerpt">
<?php echo get_the_excerpt() ?>
</p>
<a class="sidebar-read-more" href="<?php the_permalink() ?>"><?php _e('Read More...', 'arras') ?></a>
</li>
<?php
}
echo '</ul>';
}
And this in user.css (or style.css if you're using a child theme):
.related-posts li {
float: left;
width: 190px;
height: 320px;
position:relative;
border: none;
}
.related-posts .excerpt {
height: 100px;
overflow: hidden;
}
.related-posts .attachment-quick-preview-thumb {
width: 160px;
height: 115px;
border: 1px solid #CCC;
padding: 2px;
}
.related-posts .sidebar-read-more {
position: absolute;
bottom: 0;
}
.related-posts h6 {
margin: 8px 0px 4px;
}
.related-posts .sidebar-read-more:link, .related-posts .sidebar-read-more:visited {
font-weight: bold;
font-size: 12px;
text-transform: none;
}
It's still not exactly how i'd like it, sometimes stuff doesn't line up nicely, and it doesn't look great in the RSS feed, but it works OK for me for now.