在Wordpress中显示来自特定标签的4条最新帖子

时间:2018-03-16 07:08:58

标签: php wordpress loops tags wordpress-theming

我想显示标签中的4条最新帖子"视频"在WordPress中,我该怎么做?

我试过这个循环,但我只想要4个最新帖子。

<?php query_posts('tag=video'); ?>
    <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
        <?php the_title(); ?>
        <?php endwhile; ?>
    <?php else : ?>
        no video
   <?php endif; ?>

1 个答案:

答案 0 :(得分:1)

请尝试以下代码:

   <?php

            $query = new WP_Query( array(
                'posts_per_page' => 4,
                'no_found_rows'  => true,
                'tag'            => 'video'
            ) );

            if ( $query->have_posts() ) :

                while ( $query->have_posts() ) : $query->the_post();

                    // the_title();

                endwhile; 

                wp_reset_postdata();

            endif; 
     ?>