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

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

如何在 WooCommerce 中獲取產(chǎn)品特定元數(shù)據(jù)

如何在 WooCommerce 中獲取產(chǎn)品特定元數(shù)據(jù)

PHP
楊魅力 2023-08-06 15:42:17
我正在使用 WooCommerce,并且想要獲取專(zhuān)門(mén)針對(duì)該產(chǎn)品的元密鑰,例如價(jià)格、顏色等...但問(wèn)題是我不想獲取所有元密鑰,而只想獲取所需的元密鑰。例如,我不需要_edit_last, _edit_lock, _wc_review_count... 而只需要priceand color(作為示例)。如果它是一個(gè)不重要的網(wǎng)頁(yè),但我不想在網(wǎng)頁(yè)上顯示它們,但我想將它們作為 json 發(fā)送到其他地方。所以應(yīng)該對(duì)數(shù)據(jù)進(jìn)行過(guò)濾。順便說(shuō)一句,它在插件中,我想與其他人分享,所以我不能/不應(yīng)該訪(fǎng)問(wèn)他們的 WooCommerce api。我的代碼獲取所有元鍵(但我只想要其中的一些):$attributes = get_post_meta($product->get_id());foreach($attributes as $key => $value) {    $result['products'][$p]['attributes'][$key] = $value[0];}上面代碼的結(jié)果是:[attributes] => Array(    [_edit_last] => 1    [_edit_lock] => 1594817821:1    .    .    .)但我想要:[attributes] => Array(    [price] => 1000    [color] => 'red'    .    .    .)
查看完整描述

3 回答

?
慕哥6287543

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

有多種方法,具體取決于您想要的:

1)。您將需要使用WC_Product 對(duì)象上的WC_Product方法來(lái)獲取產(chǎn)品屬性:

$product_id = 37; // Defined product Id for testing


// Get the WC_Product Object from the product ID (optional)

$product = wc_get_product($product_id); // If needed


// Get product active price

$product_data = $product->get_price();


// … and so on …

2)。對(duì)于特定或自定義產(chǎn)品元數(shù)據(jù),您將使用使用所需元鍵的WC_Data方法,例如:get_meta()

$product_id = 37; // Defined product Id for testing


// Get the WC_Product Object from the product ID (optional)

$product = wc_get_product($product_id); // If needed


// Get custom meta data froma specific meta key

$product_data = $product->get_meta('my_meta_key');


// … and so on …

3)。您可以使用對(duì)象上的WC_Data方法get_data()WC_Product來(lái)獲取數(shù)組中不受保護(hù)的元數(shù)據(jù):

$product_id = 37; // Defined product Id for testing


// Get the WC_Product Object from the product ID (optional)

$product = wc_get_product($product_id); // If needed


// Get product unprotected meta data in an array

$product_data = $product->get_data();


// Output row data

echo '<pre>'. print_r( $obj, true ) . '</pre>';

你會(huì)得到類(lèi)似的東西(摘錄):


Array

(

? ? [id] => 37

? ? [name] => Happy Ninja Dish Hip

? ? [slug] => happy-ninja-dish

? ? [date_created] => WC_DateTime Object

? ? ? ? (

? ? ? ? ? ? [utc_offset:protected] => 0

? ? ? ? ? ? [date] => 2015-12-26 11:53:15.000000

? ? ? ? ? ? [timezone_type] => 3

? ? ? ? ? ? [timezone] => Europe/Paris

? ? ? ? )


? ? [date_modified] => WC_DateTime Object

? ? ? ? (

? ? ? ? ? ? [utc_offset:protected] => 0

? ? ? ? ? ? [date] => 2020-07-09 19:25:32.000000

? ? ? ? ? ? [timezone_type] => 3

? ? ? ? ? ? [timezone] => Europe/Paris

? ? ? ? )


? ? [status] => publish

? ? [featured] =>?

? ? [catalog_visibility] => visible

? ? [description] => Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet…


[add_to_cart id="53"]

? ? [short_description] => Pellentesque habitant morbi tristique senectus...

? ? [sku] => Gh2563

? ? [price] => 90.50

? ? [regular_price] => 100

? ? [sale_price] => 90.50


// … and so on …


查看完整回答
反對(duì) 回復(fù) 2023-08-06
?
汪汪一只貓

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

有兩種方法可以做到這一點(diǎn),一種是在 foreach 循環(huán)中手動(dòng)過(guò)濾元數(shù)據(jù)數(shù)組,另一種是對(duì) wp_postmeta 表進(jìn)行自定義查詢(xún)以獲取特定鍵。



查看完整回答
反對(duì) 回復(fù) 2023-08-06
?
慕桂英4014372

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

以下是有關(guān)如何從每個(gè)產(chǎn)品獲取元數(shù)據(jù)的Woocommerce 代碼參考。

另外,這是如何通過(guò)下面的鍵獲取元數(shù)據(jù)的示例:

function woo_custom_additional_information_tab_content() {


global $product;


$product_data = $product->get_meta('_specifications');


echo $product_data;

}


查看完整回答
反對(duì) 回復(fù) 2023-08-06
  • 3 回答
  • 0 關(guān)注
  • 208 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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