如何将帖子和woo商业产品归还到同一个数组?

时间:2013-10-03 10:35:22

标签: wordpress woocommerce posts product

我有一个网站,目前正在'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数组?

1 个答案:

答案 0 :(得分:2)

您可以在post_type键中放置一个数组,如下所示:

'post_type' => array('product','post')