【发布时间】:2017-12-20 12:49:03
【问题描述】:
我想用我的自定义字段 (_wholesale_price) 替换价格,但不知道如何获取所选变体的 ID
function new_variable_price_format( $price, $product ) {
echo '<pre>';
var_dump($product);
echo '</pre>';
// return get_post_meta( $ID, '_wholesale_price', true);
}
add_filter( 'woocommerce_variable_sale_price_html', 'new_variable_price_format', 10, 2 );
add_filter( 'woocommerce_variable_price_html', 'new_variable_price_format', 10, 2 );
【问题讨论】:
标签: php wordpress woocommerce price variations