- Age Range: 60 - 69
- Ethnicity: New Zealand
- Hair Colour: Grey
- Eye Colour: Blue
Gabriella Larkin-Bruce - Managing Director / Senior Agent
Mob: 64 (0)21 337 797 / +61 (0) 406 009 477 Phone: +64 (0)9 360 3440
[email protected]
$contactName = get_post_meta($results[0]['post_id'], 'ContactName', true);
$mobile = get_post_meta($results[0]['post_id'], 'Mobile', true);
$phone = get_post_meta($results[0]['post_id'], 'Phone', true);
$address1 = get_post_meta($results[0]['post_id'], 'Address1', true);
$postCode = get_post_meta($results[0]['post_id'], 'postCode', true);
$state = get_post_meta($results[0]['post_id'], 'State', true);
$country = get_post_meta($results[0]['post_id'], 'Country', true);
$email = get_post_meta($results[0]['post_id'], 'Email', true);
$webAddress = get_post_meta($results[0]['post_id'], 'WebAddress', true);
$contactText = '';
if($contactName){ $contactText = $contactText.$contactName.'
'; }
if($mobile){ $contactText = $contactText.'Mob: '.$mobile.' '; }
if($phone){ $contactText = $contactText.'Phone: '.$phone; }
if($address1){ $contactText = $contactText.'
'.$address1.', '.$state.' '.$postCode.', '.$country; }
if($email){ $contactText = $contactText.'
'.$email.''; }
if($webAddress ){
$link = $webAddress;
if(strpos($link, 'http') !== 0){
$link = 'http://'.$link;
}
$contactText = $contactText.'
'.$webAddress .'';
}
echo $contactText;
?>