arkadaşlar merhaba,
böyle bir döngüm var. yapamadığım şey şu. bu döngüde 1 adet içeriği gösteriyor duruyor. ama ben yan yana 5 kere tekrar etsin dursun istiyorum :S

Alıntı
<ul class="galerislide">
<?php
query_posts('showposts=5&cat=2');
while ( have_posts() ) : the_post(); ?>
<li><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php if ( has_post_thumbnail()) : the_post_thumbnail( 'res2', array('class' => '', 'style' => '', 'alt' => ''.get_the_title().'', 'title' => ''.get_the_title().'' )); else : ?><img src="<?php echo get_post_meta($post->ID, "resim", true); ?>" alt="<?php k_baslik(); ?>" /><?php endif; ?></a>

</li>
<?php endwhile; ?>
</ul>