1 回答
TA贡献2003条经验 获得超2个赞
为什么你必须在每个请求上运行这个函数?
当然,您的代码可以杀死您的服务器,它会为管理员或前端的每个请求触发,它的查询和循环遍历所有帖子,然后更新所有产品帖子,
你应该把它挂在某个地方,比如在创建/更新帖子时
结帐save_post功能
//Your function to update the meta
function update_actual_stock($post_id) {
$post_type = get_post_type($post_id);
if ($post_type == 'product') {
$product = wc_get_product($post_id);
$virtual_stock = get_post_meta( $post_id, 'wccaf_virtual_quantity', true );
$visible_stock = $product->get_stock_quantity();
$actual_quantity = $visible_stock - $virtual_stock;
update_post_meta( $post_id, 'actual_stock',$actual_quantity);
}
}
// hook it on 'save_post' action hook so it only updates meta of specific post if its updated/created
function _update_blabla_meta( $post_id ) {
update_actual_stock($post_id)
}
add_action( 'save_post', '_update_blabla_meta' );
如果您需要在下订单后运行您的功能,您必须将其挂钩woocommerce_checkout_order_processed,有三个参数传递给该操作,do_action( 'woocommerce_checkout_order_processed', $order_id, $posted_data, $order );供您获取要更新的帖子
检查这里的代码https://docs.woocommerce.com/wc-apidocs/source-class-WC_Checkout.html#1120
编辑....
这应该可以实现您想要的,或者只是修改它以满足您的需求;
//run meta update on products only after order is place
add_action( 'woocommerce_checkout_order_processed', function($order_id) {
$order = wc_get_order( $order_id ); // get the order from ID
$items = $order->get_items(); // get order items
//Loop through order each items
foreach ( $items as $item ) {
$porduct_id = $item->get_product_id(); //get the product ID from order item
$virtual_stock = get_post_meta( $porduct_id, 'wccaf_virtual_quantity', true ); // get your own meta value
$visible_stock = get_post_meta( $porduct_id, '_stock', true ); // get the product current stock count
$actual_quantity = $visible_stock - $virtual_stock;
update_post_meta( $porduct_id, 'actual_stock', $actual_quantity); // Update your own meta
}
});
- 1 回答
- 0 关注
- 105 浏览
添加回答
举报