Wordpress自定义thankyou页面按订单总计

时间:2016-06-02 20:13:04

标签: php wordpress if-statement

我想在thankyou.php中为每个订单总值回显一条自定义消息

示例:

我试过了:

<?php $order->get_total();
    if ($order == '59.9') {
        echo 'custom 1';
    }
    else if ($order == '159.8') {
    echo 'custom 2';
    }
    ?>

我可以知道它为什么不起作用吗?

1 个答案:

答案 0 :(得分:0)

您需要将$ order-&gt; get_total()的结果分配给变量,然后在if-else中检查该变量。希望它是这样的:

<?php 
$mytotalorder = $order->get_total();
if ($mytotalorder == '59.9') {
    echo 'custom 1';
}
else if ($mytotalorder == '159.8') {
    echo 'custom 2';
}
?>

希望这有帮助。