Wordpress post meta(属性)只有最后一个属性是可见的

时间:2013-07-25 10:32:05

标签: wordpress attributes product woocommerce term

我以编程方式插入产品(Woocommerce), 我在属性'Size'中也插入了多个值,但是当我查看产品时,只显示最后一个属性。 当我更新产品而不做任何更改时,会显示所有属性值。

代码如下:

$thedata = Array(
    'pa_size'=>Array(
        'name'=>'pa_size',
        //'value'=> '',
        //'position'=> '0',
        'is_visible' => '1', 
        'is_variation' => '1',
        'is_taxonomy' => '1'
            )
    );

update_post_meta( $idPost,'_product_attributes',$thedata);

   // For insert Attributes
   wp_set_object_terms( $idPost,$name_attr, $taxonomy ,true);

PS:我将属性设置为可见后插入一些属性值。

请帮忙,我希望展示所有产品,而无需更新产品。

提前致谢。

0 个答案:

没有答案