返回循环 wordpress

Returning Loops wordpress

我该如何更改它以便在前三个帖子后停止循环并returns将其余帖子放在单独的行中

<?php
    $the_query = new WP_Query( 'posts_per_page=3' );
?>
<?php
    while ($the_query -> have_posts()) : $the_query -> the_post();
?>
    <div class="col-md-4">
        <a href="<?php the_permalink() ?>">
            <?php the_title(); ?>
        </a>
        <?php the_excerpt(__('(more…)')); ?>
    </div>
<?php
    endwhile;
    wp_reset_postdata();
?>

posts_per_page=3 只会 return 3 个帖子,因此您必须将该值更改为要在该页面上显示的帖子数(在您的情况下是摘录)。