好啊这是我的解决方案,而且(到目前为止)有效:
function return_custom_price($price, $product) {
$myPrice = 15;
global $current_user;
$price = $myPrice;
$post_id = $post->ID;
return $price;
}
add_filter(\'woocommerce_get_price\', \'return_custom_price\', 10, 2);
它确实针对商店中的每一种产品,但由于该网站只有一种产品,因此效果很好。