Pre-owned Vehicles from VW Autohouse Gaborone
1 post found
https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/tol10112_u0670182_1.jpg, https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/tol10112_u0670182_2.jpg, https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/tol10112_u0670182_3.jpg
VOLKSWAGEN
POLO
(2025)
VOLKSWAGEN HATCH MY22 1.0 TSI LIFE DSG
Array
(
[vehicleid] => Array
(
[0] => 29068851
)
[dumpdate] => Array
(
[0] => 2026-04-08T00:33:24.143
)
[mmcode] => Array
(
[0] => 64027671
)
[molstockbooknumber] => Array
(
[0] => TOL10112_U0670182
)
[stockbooknumber] => Array
(
[0] => U0670182
)
[vinnumber] => Array
(
[0] => WVWZZZAW8TU011717
)
[regnumber] => Array
(
[0] => 1717
)
[uploadtype] => Array
(
[0] => USED
)
[vehiclemake] => Array
(
[0] => VOLKSWAGEN
)
[vehiclerange] => Array
(
[0] => POLO
)
[vehiclemodel] => Array
(
[0] => HATCH MY22 1.0 TSI LIFE DSG
)
[vehicleyear] => Array
(
[0] => 2025
)
[bodytype] => Array
(
[0] => HATCH
)
[transmissiontype] => Array
(
[0] => AUTOMATIC
)
[fueltype] => Array
(
[0] => UNLEADED
)
[colour] => Array
(
[0] => INGOT SILVER
)
[numberofdoors] => Array
(
[0] => 5
)
[mileage] => Array
(
[0] => 20
)
[servicehistory] => Array
(
[0] => None
)
[comments] => Array
(
[0] =>
)
[price] => Array
(
[0] => 366850
)
[dealershipid] => Array
(
[0] => 137
)
[molnumber] => Array
(
[0] => TOL10112
)
[dealershipname] => Array
(
[0] => VW Autohouse Gaborone
)
[pictures] => Array
(
[0] => a:3:{i:0;s:90:"https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/tol10112_u0670182_1.jpg";i:1;s:90:"https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/tol10112_u0670182_2.jpg";i:2;s:90:"https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/tol10112_u0670182_3.jpg";}
)
)
1
WVWZZZAW8TU011717
WVWZZZAW8TU011717
Colour: INGOT SILVER
TOL10112
29068851
29068851
Enquire
<?php
$post_id = get_the_id();
$custom_fields = get_post_meta($post_id);
echo $custom_fields['mmcode'][0] . '<br />';
echo print_r($custom_fields);
if (empty($custom_fields)) {
error_log("No custom fields found for post ID: $post_id");
return;
}
error_log("Custom fields for post ID $post_id:");
foreach ($custom_fields as $key => $value) {
// $value is always an array
if (is_array($value)) {
foreach ($value as $val) {
error_log("$key => $val");
}
} else {
error_log("$key => $value");
}
}
?>