Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save tavomak/14a2638b4134739e0784c83ad172f22f to your computer and use it in GitHub Desktop.
Save tavomak/14a2638b4134739e0784c83ad172f22f to your computer and use it in GitHub Desktop.
Woocommerce get price in custom loop
<?php
global $woocommerce;
$currency = get_woocommerce_currency_symbol();
$price = get_post_meta( get_the_ID(), '_regular_price', true);
$sale = get_post_meta( get_the_ID(), '_sale_price', true);
?>
<?php if($sale) : ?>
<p class="product-price-tickr"><del><?php echo $currency; echo $price; ?></del> <?php echo $currency; echo $sale; ?></p>
<?php elseif($price) : ?>
<p class="product-price-tickr"><?php echo $currency; echo $price; ?></p>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment