如何在WooCommerce中使用wp_Query获取捆绑产品列表

时间:2016-08-19 作者:AVM

我想使用WP\\u查询获取捆绑产品的列表。我使用了以下方法

   $args = array( 
            \'post_type\' => \'product\',               
            \'posts_per_page\' => 9, 
            \'orderby\' =>\'date\',
            \'orderby\' => \'rand\', 
            \'meta_query\'=>array(
                array(
                    \'key\'=>\'_thumbnail_id\', 

                )
            )
        );

 $loop = new WP_Query( $args );
我如何通过论证获得捆绑产品?有人能帮忙吗。。

谢谢

1 个回复
最合适的回答,由SO网友:Aniruddha Gawade 整理而成

您应该可以使用“tax\\u query”来执行此操作:

\'tax_query\'=> array(
    array(
        \'taxonomy\' => \'product_type\',
        \'field\'    => \'slug\',
        \'terms\'    => \'bundle\', 
    ),
),

相关推荐

Ordering terms whilst in loop

我有一个页面模板,显示所有;“发布”;在两个自定义分类中,帖子显示在一个表中$type = $_GET[\'type\']; $category = $_GET[\'category\']; args = array( \'post-type\' => \'literature\', \'posts_per_page\' => -1, \'tax_query\' => array(