按产品类型查询/过滤woocommerce产品

时间:2015-04-22 17:32:31

标签: wordpress woocommerce

我添加了新的产品类型,例如here

现在我想展示该产品类型。这是我的疑问:

$query_args = array('post_type' => 'product' );

$r = new WP_Query( $query_args );

if ( $r->have_posts() ) { .........

如何仅查询此新产品类型的产品?

1 个答案:

答案 0 :(得分:0)

更简洁的方法-使用WooCommerce wc_get_products而不是WP_Query。

$args = array(
    'type' => 'custom_product_type'
    );
$products = wc_get_products( $args );