0

我有一个网站,目前正在从“主页-轮播”产品类别中的 woo 商务产品中提取 post_thumbnail 图像:

$args = array( 'post_type' => 'product', 'posts_per_page' => '5', 'product_cat' => 'homepage-carousel' );
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post();

我还希望能够从该类别post_thumbnail的常规帖子中提取图像。homepage-carousel

如何将两种类型的帖子添加到$args数组中?

4

1 回答 1

2

您可以在键中放置一个数组post_type,就像这样:

'post_type' => array('product','post')
于 2013-10-03T11:09:59.250 回答