我在我的商店里使用wordpress和woocommerce。
我需要每晚补充变异产品和单品。
实施例。我有一个库存量为30的产品。然后,如果有人购买产品,那么当然是29。但第二天,股票应该再次自动切换到30。
有谁知道怎么做?或者创建一个php /代码/函数或什么?
我收到了这段代码,但它没有用。
// 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);
}
}