如果我尝试以这种方式获取产品类型,我真的很困惑如何在 Woocommerce 中正确获取产品类型:
$product->get_type();
simple即使产品是可变的,它也总是返回,然后我尝试了以下操作:
$terms = get_the_terms($this->product->get_id(), 'product_type');
$product_type = (!empty($terms)) ? sanitize_title(current($terms)->name) : 'simple';
从上面的代码可以看出,它获取了product_type产品的分类法,如果存在则返回分类法名称,否则返回simple。
然而,即使产品是可变的,它仍然会返回simple,我现在不知道该怎么办,因为我从 woocommerce 挂钩的参数中获取产品对象,我不知道它是什么类型的产品,我需要制作这个验证。
如何正确获取woocommerce中的产品类型?
更新
根据要求,我将添加我使用的完整代码,这样您就可以更好地了解我想要实现的目标。
基本上我想在订单行项目管理编辑屏幕中将元字段显示为一列。
add_action( 'woocommerce_admin_order_item_values', bani_add_cost_price_column_order_value_admin_edit', 10, 3);
function ebani_add_cost_price_column_order_value_admin_edit( $product, $item, $item_id ) {
$order = $item->get_order();
?>
<td class="item_cost_price" width="1%" data-sort-value="<?php echo esc_attr( $order->get_item_subtotal( $item, false, true ) ); ?>">
<div class="view">
<?php
if( ! is_null( $product ) ){
//The right way to get the product type
$terms = get_the_terms( $product->get_id(), 'product_type' );
$product_type = ( !empty( $terms ) ) ? sanitize_title( current( $terms )->name ) : 'simple';
echo $product_type;
if( $product_type == 'variable' ) {
$variation_id = $item->get_variation_id();
echo wc_price( get_post_meta( $variation_id, 'variation_cost', true ), array( 'currency' => $order->get_currency() ) ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
}elseif( $product_type == 'simple' )
30秒到达战场