我有一个网站,目前正在从“主页-轮播”产品类别中的 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
数组中?