一种简单的方法是使用CSS和PHP的解决方案。
<?php
$postcount = 1;
$wp_query = new WP_Query();
while ($wp_query->have_posts()) : $wp_query->the_post();
?>
<div class="post-<?php echo $postcount ?>">
<h3><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h3>
<div class="entry">
<?php the_excerpt(); ?>
</div>
</div>
<?php
$postcount++;
endwhile;
?>
然后你可以根据屏幕大小来设计你的网站。
.post-1, .post-2, .post-3 { }
.post-4, .post-5, .post-6 { display:none; }