有没有办法将产品类别名称添加到Woocommerce中的管理订单页面?
现在它只显示产品名称。
答案 0 :(得分:3)
这样的事情?
add_action('woocommerce_before_order_itemmeta','woocommerce_before_order_itemmeta',10,3);
function woocommerce_before_order_itemmeta($item_id, $item, $product){
echo '<p>'.get_the_term_list($product->id, 'product_cat').'</p>';
}
此代码将在产品名称下方显示类别。