我有一个网站,目前正在'homepage-carousel'产品类别中从woo commerce products中提取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
数组?