ezoryak adlı üyeden alıntı: mesajı görüntüle
query_posts('offset=5&posts_per_page=3');
son 5 yazıdan sonraki üç yazıyı listeler. içeriği çekip bitirdikten sonra wp_reset_query(); ile sorguyu tamamlar, devamı için yen bir loop başlatırsınız.
normalinde bu şekilde kullanıyordum

$recent = new WP_Query("showposts=2,5"); 
			while (
				$recent->have_posts()
				) : $recent->the_post();
				?>
			
			<div class="liste"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'kubrick'), the_title_attribute('echo=0')); ?>">
				• <?php the_title(); ?></a></div>
			<?php endwhile; ?>
sadece başlığı çekecek şekilde buna nasıl uyarlarız