how to get metadata of a product woocommerce? I have field custom en my products and I need to get this data.
{"ID":151,
"ORDER_ID":251,
"NAME":"car",
"PRODUCT_ID":87,
"VARIATION_ID":0,
"QUANTITY":1,
"TAX_CLASS":"",
"SUBTOTAL":"3",
"SUBTOTAL_TAX":"0",
"TOTAL":"3",
"TOTAL_TAX":"0",
"TAXES":{"TOTAL":[],
"SUBTOTAL":[]},
"META_DATA":[{"ID":1433,
"KEY":"my_car",
"VALUE":"red"}]}
But the always result is the same, I can't access to field meta_data. The field ID and name I have access.
I used get_data() and get_item(), but when I try access with get_data() to field meta_data it give me this error:
UNCAUGHT ERROR: CANNOT USE OBJECT OF TYPE WC_DATETIME AS ARRAY IN
And with get_item(), the value meta_data is null because is protected.
How can i get these values?