如何添加woocommerce fee_lines元

时间:2018-09-28 09:27:36

标签: wordpress api woocommerce woocommerce-rest-api fee

我目前正在使用woocommerce api来添加一些自定义费用。

查询api时,我注意到Fee​​_lines也使用元数据:

[fee_lines] => Array (
    [0] => Array(
        [id] => 431
        [name] => VAT (inc p&p VAT)
        [tax_class] => 0
        [tax_status] => taxable
        [amount] => 11.306
        [total] => 11.31
        [total_tax] => 0.00
        [taxes] => Array(
        )
        [meta_data] => Array(
        //looks like meta can go here?
        )
    )
)

您可以在此处输入任何元吗?如果是这样,那真的很方便!

我在这里浏览了文档:https://github.com/woocommerce/woocommerce/wiki/Order-and-Order-Line-Item-Data#fee-line,看不到如何添加它。

有什么想法吗?

0 个答案:

没有答案