php 使Cost of Goods插件与WC REST API兼容
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 使Cost of Goods插件与WC REST API兼容相关的知识,希望对你有一定的参考价值。
<?php
// add the code below to your functions.php file
function my_custom_insert_shop_order_object( $order ) {
if( function_exists('wc_cog') ) {
$WC_COG = wc_cog();
$WC_COG->set_order_cost_meta( $order->get_id() );
}
}
add_action('woocommerce_rest_insert_shop_order_object', 'my_custom_insert_shop_order_object');
以上是关于php 使Cost of Goods插件与WC REST API兼容的主要内容,如果未能解决你的问题,请参考以下文章
HDU6438 Buy and Resell
Cost of path的计算
loss function与cost function
The Cost of JavaScript --------引用
derivative of cost function for Logistic Regression 逻辑回归代价函数偏导证明
[C++ Weekly] EP2 Cost of Using Statics