I have this code to show all post of category and thumbnail of them.
<?php $recent = new WP_Query(); ?>
<?php $recent->query('cat=1&showposts=5'); ?>
<?php while($recent->have_posts()) : $recent->the_post(); ?>
<ul>
<li>
<a href="<?php the_permalink(); ?>">
<?php the_title(); ?>
</a>
</li>
</ul>
<?php endwhile; ?>
But now I only want show thumbnail for first post of category. clearly,ex Category have 4 post, I show 4 post but only first post have thumbnail,3 posts remain only have title and permalink