如果选择的付款方式是COD,我想做一些更改.在我使用的现有WC_Order上
($order->payment_method_title == 'Cash On Delivery' ? ... : ... );
检索标题.但我想检查id(cod),因为标题字符串被翻译成不同的语言,这不是一个很好的解决方案.
有没有办法在woocommerce中的WC_Order上检索id?
wordpress woocommerce payment-method
我找到了方法
$order->get_shipping_method()
访问该名称,但我想检索id而不是名称?
wordpress shipping woocommerce
woocommerce ×2
wordpress ×2
payment-method ×1
shipping ×1