Forked from stuart-lambon/woo-update-product-stock-qty.php
Created
January 22, 2024 09:39
-
-
Save gaelgerard/1eee5e7dd47ad1e8283917b2a1a5556f to your computer and use it in GitHub Desktop.
Updates WooCommerce product stock quantity programmatically. $sku and $qty variables need to be filled.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$sku = 'ITEM001'; | |
$qty = 1; | |
// Get product_id from SKU — returns null if not found | |
$product_id = wc_get_product_id_by_sku( $sku ); | |
// Process if product found | |
if ( $product_id != null ) { | |
// Check for negative stock (backorders etc.) and set to 0 | |
if ( $qty <= 0 ) { | |
$qty = 0; | |
} | |
// Set up WooCommerce product object | |
$product = wc_get_product( $product_id ); | |
// Make changes to stock quantity and save | |
$product->set_manage_stock( true ); | |
$product->set_stock_quantity( $qty ); | |
$product->save(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment