仅在价格低于$ 20时才将价格提高20%的功能

时间:2019-02-13 20:25:31

标签: price wpallimport

我想知道是否有人可以帮助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;
    }
}

0 个答案:

没有答案