我正在尝试在网站上制作“每月一餐”部分.菜单分为自定义帖子类型,因此我需要能够从多种帖子类型中循环分类.
这是到目前为止我没有做的代码:
<div class="maaltijd-vdm col-1-1">
<?php $mvdm = new WP_Query( array( 'category_name' => 'mvdm', 'posts_per_page' => 1 ) ); ?>
<?php while ($mvdm->have_posts()) : $mvdm->the_post(); ?>
<div class="mvdm-thumb">
<?php the_thumbnail(); ?>
</div>
<div class="description">
<h3><?php the_title(); ?></h3>
<p><?php get_the_mvdm(); ?></p>
</div>
<?php endwhile; wp_reset_postdata(); ?>
</div>
我将衷心感谢您的帮助!
* get_the_mvdm是一个自定义函数
*我已经在同一页面中使用相同的代码创建了新闻循环(变量名称除外)
解决方法:
要查询多个posttype,您可以将post-type slug的数组传递给查询.
$args = array(
'post_type' => array('cpt1', 'cpt2'), /* the names of you custom post types */
'category_name' => 'mvdm',
'posts_per_page' => -1 /* get all posts */
)
$mvdm = new WP_Query( $args );