私には2つのループがあります。1つはスティッキーなブログ投稿用で(1ページあたり3つに制限されています)、もう1つは残りの投稿用です。1ページに3つのスティッキー投稿と他の5つの投稿を表示したいと思います。1ページに他の投稿を5つだけ表示しても機能しません。これは彼らのためのループです:
$loop2query = new WP_Query('ignore_sticky_posts=1'.'showposts=5'.'&paged='.$paged);
// START 2ND LOOP.
if ($loop2query->have_posts()) : while ($loop2query->have_posts()) : $loop2query->the_post();
// Show all posts except the 3 posts in the 1st loop.
if(in_array($post->ID, $do_not_duplicate)) continue; ?>
<div class="blogpost">
<h2><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<p>Written on <?php the_time('m/d/Y') ?>. Filed under <?php the_category(', '); ?>.</p>
</div>
<?php the_excerpt();
endwhile; endif; // END 2ND LOOP. ?>
ページあたりの投稿を制限する正しい方法である必要があると思います'showposts=5'.'&paged='.$paged
が、クエリで正しく使用したかどうかは確かです。