Woocommerce - 自动补充产品

时间:2016-05-02 13:58:46

标签: php wordpress woocommerce shop

我正在为我的商店使用wordpress和woocommerce。

我需要每晚补充产品。

实施例。我有一个库存量为30的产品。 然后,如果有人购买产品,金额是29 - 当然。 但第二天,股票应该再次自动切换到30。

有谁知道怎么做?或者创建一个php /代码/函数或什么?

1 个答案:

答案 0 :(得分:1)

注册一个名为increase_stock_daily的cron事件,让它每天运行或根据您的要求运行。

// Add function to register event to WordPress init
add_action( 'init', 'register_daily_stock_event');

// Function which will register the event
function register_daily_stock_event() {
    // Make sure this event hasn't been scheduled
    if( !wp_next_scheduled( 'increase_stock_daily' ) ) {
        // Schedule the event
        wp_schedule_event( time(), 'daily', 'increase_stock_daily' );
    }
}   

function increase_stock_daily() {
    $product = new WC_Product(10); // replace 10 with your own product ID
    if($product->get_total_stock() < 30) {
        $product->set_stock(30);
    }
}