WooCommerce:默认添加3种变体

时间:2016-06-21 23:00:44

标签: php wordpress woocommerce product variations

在WooCommerce中添加一些产品变体时,默认情况下会设置3种变体,但无法添加新变体。

这是我的代码:

$my_post = array(
    'post_title'  => 'Variation #' . $i . ' of 4 for prdct#'. $new_post_id,
    'post_name'   => 'product-' . $new_post_id . '-variation-' . $i,
    'post_status' => 'publish',
    'post_parent' => $new_post_id,
    'post_type'   => 'product_variation',
    'guid'        => home_url() . '/?product_variation=product-' . $new_post_id . '-variation-' . $i
);
$attID = wp_insert_post( $my_post );

任何解决方案?

1 个答案:

答案 0 :(得分:0)

完成后,使用插件YOAST Seo时出现问题。一旦我卸载了该插件并安装了另一个SEO插件,它就能正常工作。