<?php $recent = new WP_Query("cat=220&showposts=5"); while($recent->have_posts()) : $recent->the_post();?>
<a href="<?php the_permalink() ?>"><img alt="" border="0" height="80" width="80" src="<?php echo get_post_meta($post->ID, "Thumbnail", true); ?>"></img></a>
<?php endwhile; ?>
Thumbnail olarak eklenmiş olan resimleri gösteren kod. 220 numaralı kategoriden 5 mesajı gösterir.