您可以在主题或插件中使用此过滤器来过滤产品价格:
function filter_woocommerce_price( $price, $product ) {
// 1. Set your $price_percent variable
// 2. Subtract the price_percent from the price $price - $price_percent
// 3. Set the new $price
return $price;
}
add_filter( \'woocommerce_product_get_regular_price\', \'filter_woocommerce_price\', 10, 2 );
顺便说一下,您可以使用
$product->get_id()
在功能内。