Opal-Estate-Pro/templates/single-property/short-meta.php

32 lines
1.2 KiB
PHP
Raw Normal View History

2019-09-10 06:27:33 +02:00
<?php
global $property;
$meta_content = apply_filters( 'opalestate_single_meta_info', '' );
if ( empty( $meta_content ) ) {
$meta = $property->get_meta_shortinfo();
?>
<ul class="property-meta-list list-inline">
<?php if ( $meta ) : ?>
<?php foreach ( $meta as $key => $info ) : ?>
<?php if ( trim( $info['value'] ) ) : ?>
<li class="property-label-<?php echo esc_attr( $key ); ?>">
<div class="icon-box">
2019-09-28 08:37:40 +02:00
<i class="<?php echo opalestate_get_property_meta_icon( $key ); ?>"></i>
2019-09-10 06:27:33 +02:00
</div>
<div class="info-meta">
<span class="label-content">
<?php echo apply_filters( 'opalestate-pro' . $key . '_unit_format',
trim( $info['value'] ) ); ?>
</span>
<span class="label-property"><?php echo esc_html( $info['label'] ); ?></span>
</div>
</li>
<?php endif; ?>
<?php endforeach; ?>
<?php endif; ?>
</ul>
<?php } else {
echo wp_kses_post( $meta_content );
}