Pre-owned Vehicles from VW Autohouse Gaborone
1 post found
https://ststockprodsanorth001.blob.core.windows.net/stockimages/3756/01.jpg?v=20260815193150, https://ststockprodsanorth001.blob.core.windows.net/stockimages/3756/02.jpg?v=20260815193150, https://ststockprodsanorth001.blob.core.windows.net/stockimages/3756/03.jpg?v=20260815193150, https://ststockprodsanorth001.blob.core.windows.net/stockimages/3756/04.jpg?v=20260815193150, https://ststockprodsanorth001.blob.core.windows.net/stockimages/3756/05.jpg?v=20260815193151
(2023)
Imported Vehicle
Array
(
[vehicleid] => Array
(
[0] => 3756
)
[dumpdate] => Array
(
[0] => 2026-08-31T04:41:55.697
)
[mmcode] => Array
(
[0] => 47060026
)
[molstockbooknumber] => Array
(
[0] => TOL10112_U0670196
)
[stockbooknumber] => Array
(
[0] => U0670196
)
[vinnumber] => Array
(
[0] => SJNTAAJ12Z1192995
)
[regnumber] => Array
(
[0] => B390BUR
)
[uploadtype] => Array
(
[0] => USED
)
[vehiclemake] => Array
(
[0] =>
)
[vehiclerange] => Array
(
[0] =>
)
[vehiclemodel] => Array
(
[0] =>
)
[vehicleyear] => Array
(
[0] => 2023
)
[bodytype] => Array
(
[0] =>
)
[transmissiontype] => Array
(
[0] =>
)
[fueltype] => Array
(
[0] =>
)
[colour] => Array
(
[0] => WHITE
)
[numberofdoors] => Array
(
[0] => 0
)
[mileage] => Array
(
[0] => 45000
)
[servicehistory] => Array
(
[0] =>
)
[comments] => Array
(
[0] =>
)
[price] => Array
(
[0] => 359100
)
[dealershipid] => Array
(
[0] => 137
)
[molnumber] => Array
(
[0] => TOL10112
)
[dealershipname] => Array
(
[0] => VW Autohouse Gaborone
)
[pictures] => Array
(
[0] => a:5:{i:0;s:92:"https://ststockprodsanorth001.blob.core.windows.net/stockimages/3756/01.jpg?v=20260815193150";i:1;s:92:"https://ststockprodsanorth001.blob.core.windows.net/stockimages/3756/02.jpg?v=20260815193150";i:2;s:92:"https://ststockprodsanorth001.blob.core.windows.net/stockimages/3756/03.jpg?v=20260815193150";i:3;s:92:"https://ststockprodsanorth001.blob.core.windows.net/stockimages/3756/04.jpg?v=20260815193150";i:4;s:92:"https://ststockprodsanorth001.blob.core.windows.net/stockimages/3756/05.jpg?v=20260815193151";}
)
)
1
SJNTAAJ12Z1192995
SJNTAAJ12Z1192995
Colour: WHITE
TOL10112
3756
3756
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");
}
}
?>