你如何在主页上只显示2个帖子?

时间:2015-11-02 00:53:33

标签: wordpress

我目前在主页上只显示2个帖子时遇到了一些麻烦。

这些是从网站上其他地方的活动页面中提取的。

<div class="container">
        <div class="row">      

            <?php while ( have_posts() ) : the_post(); ?>


            <?php endwhile; // End of the loop. ?>

            <?php $whatson = new WP_Query(array(
            'post_type' => 'whats_on'     
                )); ?>
            <?php while($whatson->have_posts()) : $whatson->the_post(); ?>


    <div class="col-sm-12 col-md-5">
            <div class="thumbnail  col-centered"  style="width: 485px">

            <?php the_post_thumbnail('thumbnail') ?>

                <div class="caption">
                    <h3><?php the_title() ?></h3>
                    <h4><small></small></h4>
                    <p><?php the_field('whats_on_description'); ?></p>
                </div><!--END caption-->

            </div><!--END thumbnail-->
        </div>
     <?php endwhile; ?>
</div><!--END row-->

提前致谢。我对这一切都很陌生。

2 个答案:

答案 0 :(得分:0)

您是否尝试过添加'post_per_page'参数?

new WP_Query(array(
     'post_type' => 'whats_on',
     'post_per_page' => 2
));

答案 1 :(得分:0)

试试这段代码:

$whatson = new WP_Query(array( 'post_type' => 'whats_on','posts_per_page' => 2   ));