我想显示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;
?>
推荐阅读
- 在WordPress的任何页面上显示特定父级的子页面
- 短代码不适用于自定义WordPress主题
- 在WordPress中更改/重置密码后,将新密码发送到新数据库
- 马来西亚服务器怎么样东南亚国家哪里的服务器比较好
- Linux之cd命令
- QT5中如何使用SQLite
- CENTOS使用RINETD转发域名端口
- #yyds干货盘点#Ubuntu网络配置和故障排错工具详解
- Jenkins配置webhook钩子触发构建