【发布时间】:2018-03-16 07:08:58
【问题描述】:
我想在 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; ?>
【问题讨论】:
-
请看我的回答,它会解决你的问题。如果您仍然遇到此问题,请告诉我。
标签: php wordpress loops tags wordpress-theming