public function get_property_land_category()
 {
     if ('land' != $this->post_type || 'commercial_land' != $this->post_type) {
         return;
     }
     if ($this->get_property_meta('property_land_category') != '') {
         return epl_listing_meta_land_category_value($this->get_property_meta('property_land_category'));
     }
 }
    $property_rent = $meta['property_rent'][0];
    if ($property_rent != '') {
        $property_rent = epl_currency_formatted_amount($property_rent);
    }
    // Rental Bond
    $property_bond = $meta['property_bond'][0];
    if ($property_bond != '') {
        $property_bond = epl_currency_formatted_amount($property_bond);
    }
}
if ('land' == $post_type || 'commercial_land' == $post_type) {
    $property_land_category = '';
    if (isset($meta['property_land_category'])) {
        if (isset($meta['property_land_category'][0])) {
            $property_land_category_id = $meta['property_land_category'][0];
            $property_land_category = epl_listing_meta_land_category_value($property_land_category_id);
        }
    }
}
if (isset($meta['property_unique_id'])) {
    if (isset($meta['property_unique_id'][0])) {
        $property_unique_id = $meta['property_unique_id'][0];
    }
}
//address
if (isset($meta['property_address_street_number'])) {
    if (isset($meta['property_address_street_number'][0])) {
        $property_address_street_number = $meta['property_address_street_number'][0];
    }
}
if (isset($meta['property_address_street'])) {