woocommerce_product_set_stock, $product_with_stock

woocommerce_product_set_stock, $product_with_stock

Appears in:
Hook Type: action

See hook in core

Displaying hooks found in version: woocommerce.11.0.0

do_action('woocommerce_product_set_stock, $product_with_stock') is found 1 times:

  • /includes/wc-stock-functions.php line 75
    			do_action( 'woocommerce_variation_set_stock', $product_with_stock );
    		} else {
    			// phpcs:disable WooCommerce.Commenting.CommentHooks.MissingSinceComment
    			/** This action is documented in includes/data-stores/class-wc-product-data-store-cpt.php */
    			do_action( 'woocommerce_product_set_stock', $product_with_stock );
    		}
    
    		return $product_with_stock->get_stock_quantity();
    	}
    	return $product->get_stock_quantity();
    }