从WordPress中的特定标签显示4条最新帖子

我想显示WordPress中” 视频” 标签的4条最新帖子, 我该怎么做?
我尝试了这个循环, 但是我只想要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【从WordPress中的特定标签显示4条最新帖子】请尝试以下代码:
< ?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; ?>

    推荐阅读