我想知道是否有人可以帮助WP All Import仅在价格低于$ 20时才提高价格。也许我的问题是如何设置变量? price1(实际价格)?
$price1 = "{Cost[1]}";
$price2 = "20"
$price3 = "$price1 + 20%";
function choose_price_to_return ($price1, $price2) {
if ($price1 < $price2) {
return $price3;
} else {
return $price1;
}
}