无法获取特定类别产品的WooCommerce变体销售产品

时间:2018-06-08 作者:tanu

无法根据特定产品类别提取变体销售产品。我的代码只提取简单产品,不提取可变产品。

  $cat_id = $_GET[\'catid\'];

  $args = array(    
\'post_type\'             => \'product\',
\'post_status\'           => \'publish\',
\'posts_per_page\'        =>-1, 
\'meta_query\'     => array(
    \'relation\' => \'OR\',
  array( // Variable products type
        \'key\'           => \'_min_variation_sale_price\',
        \'value\'         => 0,
        \'compare\'       => \'>\',
        \'type\'          => \'numeric\'
    ),
    array( // Simple products type   
        \'key\'           => \'_sale_price\',
        \'value\'         => 0,
        \'compare\'       => \'>\',
        \'type\'          => \'numeric\'
    )
    ),
\'tax_query\'             => array(
    array(
        \'taxonomy\'      => \'product_cat\',
        \'field\' => \'term_id\', //This is optional, as it defaults to \'term_id\'
        \'terms\'         => $cat_id,
        \'include_children\' => true,
        \'operator\'      => \'IN\' // Possible values are \'IN\', \'NOT IN\', \'AND\'.
    )
    )

);
$products = new WP_Query($args);

1 个回复
SO网友:Steve

WooCommerce使用“product\\u variation”作为可变产品的帖子类型。

因此,可变产品的顶层是post\\u类型的“product”,而每个变体都是post\\u类型的“product\\u variation”。

与特定变化相关的数据存储在适当的“product\\u variation”post中。

结束

相关推荐

使用新的WP-Query()从循环中过滤后期格式;

嗨,我目前正在为我的博客构建一个主题。下面的代码指向最新的帖子(特色帖子)。因为这将有一个不同的风格比所有其他职位。然而我想过滤掉帖子格式:链接使用我在循环中定义的WP查询,因为它给我带来了更多的灵活性。我该怎么做呢? <?php $featured = new WP_Query(); $featured->query(\'showposts=1\'); ?> <?php while ($featured->have_post