Created
May 26, 2020 05:05
-
-
Save felipegenuino/ed02076088a11d9bbcaaf0f6d43d8193 to your computer and use it in GitHub Desktop.
[Frontend] WooCommerce: Ultimos produtos
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 //wp-looping | |
global $product; | |
$product = wc_get_product(); | |
?> | |
<?php if($product->get_stock_quantity() <= $product->get_low_stock_amount() ) : ?> | |
<span class="courses-and-events__list__card__badge">ÚLTIMAS VAGAS</span> | |
<?php endif; ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment