?
<?php
/**
* Loop Price
*
* @author WooThemes
* @package WooCommerce/Templates
* @version 1.6.4
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
global $product;
?>
<?php if ( $price_html = $product->get_price_html() ) : ?>
<div class="woopost-price">
<div class="woopost-price-in">
<?php echo $price_html; ?>
</div>
</div>
<?php endif; ?>