I am trying to read an api I have implemented with Wordpress using WP-API V2, I have used several plugins to return the information i need.
The source json can be found here.
I need to return pure_taxonomies->property-status->name
.
I have tried the following but i just get a blank page:
foreach($select_api as $p)
{
echo '
Status:'.$p->pure_taxonomies->property-status->name.'
';
}
Any help would be great!