Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- // simple show stock shortcode - only works on product page
- // usage: Only [show_stock] available!
- // code goes in functions.php for your child theme
- add_shortcode('show_stock', 'show_stock');
- function show_stock() {
- global $product;
- return (int) $product->get_stock_quantity(); // for WC 3.x onwards
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement