# propertyhive/2.2.2/templates/single-property/meta.php

Property Hive, version 2.2.2. 35 lines.

- Page: https://pluginprobe.com/plugins/propertyhive/2.2.2/code/templates/single-property/meta.php
- Raw: https://pluginprobe.com/plugins/propertyhive/2.2.2/raw/templates/single-property/meta.php
- Modified: 2025-05-13T08:38:24+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/propertyhive/2.2.2/code/templates/single-property/meta.php#L10-L20`.

```php
<?php
/**
 * Single Property Meta
 *
 * @author 		PropertyHive
 * @package 	PropertyHive/Templates
 * @version     1.0.0
 */

if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly

global $post, $property;
?>
<div class="property_meta">

	<?php do_action( 'propertyhive_property_meta_start' ); ?>
    
    <ul>

        <?php do_action( 'propertyhive_property_meta_list_start' ); ?>
    
    	<?php
            foreach ( $meta as $key => $value )
            {
                echo '<li class="' . esc_attr( $key ) . '"><span>' . esc_html($value['label']) . ':</span> ' . esc_html($value['value']) . '</li>';
            }
        ?>

        <?php do_action( 'propertyhive_property_meta_list_end' ); ?>

    </ul>

	<?php do_action( 'propertyhive_property_meta_end' ); ?>
    
</div>
```
