- Age Range: 45 - 60
- Ethnicity: Caucasian
- Hair Colour: Blonde
- Eye Colour: Hazel
Gail Cowan
Phone: +649 360 2654
[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;
?>