2018年更新:
- 通过2种可能的情况澄清答案
- 添加了与woocommerce 3 +的兼容性
所以可能有2种情况:
1) 获取产品元数据(未按顺序设置项目元数据):
您需要在 foreach 循环中获取产品 ID,并获取您将使用get_post_meta()
函数(但不是 wc_get_order_item_meta()
)的此产品的一些元数据。WC_Order
所以这是你的代码:
global $post;
$order = wc_get_order( $post->ID );
$items = $order->get_items();
foreach ( $order->get_items() => $item ) {
// Compatibility for woocommerce 3+
$product_id = version_compare( WC_VERSION, '3.0', '<' ) ? $item['product_id'] : $item->get_product_id();
// Here you get your data
$custom_field = get_post_meta( $product_id, '_tmcartepo_data', true);
// To test data output (uncomment the line below)
// print_r($custom_field);
// If it is an array of values
if( is_array( $custom_field ) ){
echo implode( '<br>', $custom_field ); // one value displayed by line
}
// just one value (a string)
else {
echo $custom_field;
}
}
2) 获取订单项元数据(自定义字段值):
global $post;
$order = wc_get_order( $post->ID );
$items = $order->get_items();
foreach ( $order->get_items() as $item_id => $item ) {
// Here you get your data
$custom_field = wc_get_order_item_meta( $item_id, '_tmcartepo_data', true );
// To test data output (uncomment the line below)
// print_r($custom_field);
// If it is an array of values
if( is_array( $custom_field ) ){
echo implode( '<br>', $custom_field ); // one value displayed by line
}
// just one value (a string)
else {
echo $custom_field;
}
}
如果自定义字段数据是一个数组,则可以在 foreach 循环中访问数据:
// Iterating in an array of keys/values
foreach( $custom_field as $key => $value ){
echo '<p>key: '.$key.' | value: '.$value.'</p>';
}
所有代码都经过测试并正常工作。
与订单中的数据相关的参考: