第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

如何在 WooCommerce 中更新產(chǎn)品屬性分類標(biāo)簽名稱

如何在 WooCommerce 中更新產(chǎn)品屬性分類標(biāo)簽名稱

PHP
呼如林 2023-11-03 15:25:53
我有一個(gè)分類屬性,我需要更新屬性標(biāo)簽。這是我到目前為止所做的 $args = array(      'category' => array('chinese'),      'orderby' => 'name',  );  $products = wc_get_products($args);  foreach($products as $product)  {     $attribute = $product->get_attributes();               foreach($attribute as $attributeItem)      {            if($attributeItem->is_taxonomy())          {             $attributeItem->get_taxonomy_object()->attribute_label = "new-label"; // set new label                        }      }       $product->set_attributes($attribute);      $product-save();  }如果我讀回產(chǎn)品屬性,標(biāo)簽不會(huì)更新(讀取舊標(biāo)簽),我需要更新屬性標(biāo)簽并將其保存到數(shù)據(jù)庫中,以便當(dāng)讀回值時(shí),它反映新更新的標(biāo)簽。我缺少什么?
查看完整描述

1 回答

?
子衿沉夜

TA貢獻(xiàn)1828條經(jīng)驗(yàn) 獲得超3個(gè)贊

要更改/更新產(chǎn)品屬性分類數(shù)據(jù),您需要使用wc_update_attribute()function,因此在代碼中更改產(chǎn)品屬性標(biāo)簽名稱:

$products? = wc_get_products( array('category' => 't-shirts',? 'orderby' => 'name') );


// Loop through queried products

foreach($products as $product) {

? ? // Loop through product attributes

? ? foreach( $product->get_attributes() as $attribute ) {

? ? ? ? if( $attribute->is_taxonomy() ) {

? ? ? ? ? ? $attribute_id? ?= $attribute->get_id(); // Get attribute Id

? ? ? ? ? ??

? ? ? ? ? ? $attribute_data = wc_get_attribute( $attribute_id ); // Get attribute data from the attribute Id

? ? ? ? ? ??

? ? ? ? ? ? // Update the product attribute with a new taxonomy label name

? ? ? ? ? ? wc_update_attribute( $attribute_id, array(

? ? ? ? ? ? ? ? 'name'? ? ? ? ?=> 'New label', // <== == == Here set the taxonomy label name

? ? ? ? ? ? ? ? 'slug'? ? ? ? ?=> $attribute_data->slug,

? ? ? ? ? ? ? ? 'type'? ? ? ? ?=> $attribute_data->type,

? ? ? ? ? ? ? ? 'order_by'? ? ?=> $attribute_data->order_by,

? ? ? ? ? ? ? ? 'has_archives' => $attribute_data->has_archives,

? ? ? ? ? ? ) );

? ? ? ? }

? ? }

}

經(jīng)過測(cè)試并有效。


查看完整回答
反對(duì) 回復(fù) 2023-11-03
  • 1 回答
  • 0 關(guān)注
  • 164 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)