Opal-Estate-Pro/templates/parts/property-loop-price.php
2019-09-10 11:27:33 +07:00

37 lines
1.3 KiB
PHP
Executable File

<?php
/**
* Price HTML.
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
global $property;
?>
<div class="property-price">
<?php if ( 'on' == $property->get_price_oncall() ): ?>
<div class="call-to-price"><?php esc_html_e( 'Call to Price', 'opalestate-pro' ); ?></div>
<?php elseif ( $property->get_price() ): ?>
<?php if ( $property->get_before_price_label() ): ?>
<span class="property-before-price-label"><?php echo esc_html( $property->get_before_price_label() ); ?></span>
<?php endif; ?>
<?php if ( $property->get_sale_price() ): ?>
<span class="property-regular-price has-saleprice">
<del><?php echo opalestate_price_format( $property->get_price() ); ?></del>
</span>
<span class="property-saleprice"><?php echo opalestate_price_format( $property->get_sale_price() ); ?></span>
<?php else : ?>
<span class="property-regular-price"><?php echo opalestate_price_format( $property->get_price() ); ?></span>
<?php endif; ?>
<?php if ( $property->get_price_label() ): ?>
<span class="property-price-label"><?php echo esc_html( $property->get_price_label() ); ?></span>
<?php endif; ?>
<?php else: ?>
<div class="property-no-price"><?php esc_html_e( 'Contact Property', 'opalestate-pro' ); ?></div>
<?php endif; ?>
</div>