From 2121f291ea5cda254dec2d4f530a15e9ec3edd24 Mon Sep 17 00:00:00 2001 From: Hoang Huu Date: Tue, 1 Oct 2019 09:08:40 +0700 Subject: [PATCH] Update property.php --- inc/api/v1/property.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/inc/api/v1/property.php b/inc/api/v1/property.php index 9dd7ec7f..9dd7fceb 100755 --- a/inc/api/v1/property.php +++ b/inc/api/v1/property.php @@ -227,7 +227,9 @@ class Property_Api extends Base_Api { $property['info']['address'] = $data->get_address(); $property['meta'] = $data->get_meta_shortinfo(); + $property['is_featured'] = $data->is_featured(); $property['status'] = $data->get_status(); + $property['labels'] = $data->get_labels(); $property['locations'] = $data->get_locations(); $property['amenities'] = $data->get_amenities(); $property['types'] = $data->get_types_tax(); @@ -261,4 +263,4 @@ class Property_Api extends Base_Api { public function tags () { } -} \ No newline at end of file +}