Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 490 Bytes

README.md

File metadata and controls

14 lines (11 loc) · 490 Bytes

Property Scout

This is a plugin for wordpress that integrates into various real estate APIs to search and pull listing data. So far, the only API provider is Zillow. It uses vinceg's zillow client library. You will need a Zillow ZWSID to use.

Example

$search = trim(@$_GET['search']);
$results = apply_filters('prop_scout_search', array(), $search);

foreach($results as $result) {
  $addr = trim(@$result['address']);
  echo $addr;
}