我添加了新的产品类型,例如here
现在我想展示该产品类型。这是我的疑问:
$query_args = array('post_type' => 'product' );
$r = new WP_Query( $query_args );
if ( $r->have_posts() ) { .........
如何仅查询此新产品类型的产品?
答案 0 :(得分:0)
更简洁的方法-使用WooCommerce wc_get_products而不是WP_Query。
$args = array(
'type' => 'custom_product_type'
);
$products = wc_get_products( $args );