Automattic\WooCommerce\Admin\API
ProductsLowInStock::is_using_sitewide_stock_threshold_only()
Check to see if store is using sitewide threshold only. Meaning that it does not have any custom stock threshold for a product.
Method of the class: ProductsLowInStock{}
No Hooks.
Return
true|false
.
Usage
// protected - for code of main (parent) or child class $result = $this->is_using_sitewide_stock_threshold_only();
ProductsLowInStock::is_using_sitewide_stock_threshold_only() ProductsLowInStock::is using sitewide stock threshold only code WC 9.6.1
protected function is_using_sitewide_stock_threshold_only() { global $wpdb; $count = $wpdb->get_var( "select count(*) as total from {$wpdb->postmeta} where meta_key='_low_stock_amount'" ); return 0 === (int) $count; }