Wrap text
Report abuse
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php /*
Related Posts with Thumbnail Template
Author: alohastone - small Edit by pEtEr withoutfield
*/
?>
<?php if ($related_query->have_posts()):?>
<h3 class="relatedhead">Ähnliche Beiträge:</h3>
<?php endif; ?>
<div id="related">
<?php if ($related_query->have_posts()):?>
<?php while ($related_query->have_posts()) : $related_query->the_post(); ?>
<div class="item"><div class="itemPic"><?php get_the_image( array( 'default_image' => 'http://blog.rebellen.info/wp-content/uploads/2009/11/blogrebellen105.jpg' ) ); ?></div>
<a href="<?php the_permalink() ?>" rel="bookmark"><?php echo ShortenText(get_the_title()); ?></a><!-- (<?php the_score(); ?>)--></div>
<?php endwhile; ?>
<?php endif; ?>
</div>
|