Advertisement
lorro

WooCommerce - Show stock shortcode

Oct 20th, 2015
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.34 KB | None | 0 0
  1. // usage: Only [product_stock id="1592"] available!
  2. // code goes in functions.php for your child theme
  3. add_shortcode('product_stock', 'product_stock');
  4. function product_stock( $atts ) {
  5.   if ( ! $atts['id'] ) {
  6.     return '';
  7.   }
  8.   $product = get_product($atts['id']);
  9.   return (int) $product->get_stock_quantity(); // for WC 3.x onwards
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement