<?php
  $post_id = get_the_id();
// echo print_r(get_vehicle_gallery_images()); 
$image_urls = get_post_meta($post_id, 'pictures', true);

if (is_string($image_urls)) {
    $images = explode(',', $image_urls);
} elseif (is_array($image_urls)) {
    $images = $image_urls;
} else {
    $images = [];
}

if (!empty($images)): ?>
    <div class="vehicle-gallery">
        <?php foreach ($images as $index => $img_url): ?>
            <a href="<?php echo esc_url(trim($img_url)); ?>" class="glightbox" data-gallery="vehicle-gallery">
                <?php if ($index === 0): ?>
                    <img src="<?php echo esc_url(trim($img_url)); ?>" alt="Vehicle Image" class="gallery-main-image" />
                <?php else: ?>
                    <img src="<?php echo esc_url(trim($img_url)); ?>" alt="Gallery Thumb" class="gallery-thumb"  />
                <?php endif; ?>
            </a>
        <?php endforeach; ?>
    </div>
<?php endif; ?>

document.addEventListener('DOMContentLoaded', function () {
    new Swiper('.vehicle-gallery', {
        slidesPerView: 5,
        spaceBetween: 10,
        loop: true,
        navigation: {
            nextEl: '.swiper-button-next',
            prevEl: '.swiper-button-prev',
        },
        breakpoints: {
            768: {
                slidesPerView: 3,
            },
            480: {
                slidesPerView: 2,
            }
        }
    });
});
VOLKSWAGEN T-CROSS (2021)

VOLKSWAGEN MY20 1.0 TSI COMFORTLINE DSG

R 299 950
Range:
T-CROSS
Year:
2021
Mileage:
49 083km
Colour:
GREEN
Transmission:
AUTOMATIC
Fuel:
UNLEADED
Vehicle ID:
28494864
Available from Barons Cape Town
<?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");
        }
    }
?>
Sales Enquiry

Similar Listings 

https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071213_1.jpg, https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071213_2.jpg, https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071213_3.jpg, https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071213_4.jpg, https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071213_5.jpg, https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071213_6.jpg
VOLKSWAGEN
T-CROSS
(2022)

VOLKSWAGEN MY20 1.0 TSI COMFORTLINE DSG

Array ( [vehicleid] => Array ( [0] => 28494877 ) [dumpdate] => Array ( [0] => 2025-11-01T15:50:28.637 ) [mmcode] => Array ( [0] => 64030170 ) [molstockbooknumber] => Array ( [0] => MOL01386_U0071213 ) [stockbooknumber] => Array ( [0] => U0071213 ) [vinnumber] => Array ( [0] => WVGZZZC1ZPY020390 ) [regnumber] => Array ( [0] => CAA299381 ) [uploadtype] => Array ( [0] => USED ) [vehiclemake] => Array ( [0] => VOLKSWAGEN ) [vehiclerange] => Array ( [0] => T-CROSS ) [vehiclemodel] => Array ( [0] => MY20 1.0 TSI COMFORTLINE DSG ) [vehicleyear] => Array ( [0] => 2022 ) [bodytype] => Array ( [0] => CROSSOVER ) [transmissiontype] => Array ( [0] => AUTOMATIC ) [fueltype] => Array ( [0] => UNLEADED ) [colour] => Array ( [0] => SILVER ) [numberofdoors] => Array ( [0] => 5 ) [mileage] => Array ( [0] => 44000 ) [servicehistory] => Array ( [0] => Full ) [comments] => Array ( [0] => Why Choose Us?Full-Service History: All our pre-owned vehicles include a complete service record.80-Point Quality Check: Every vehicle is thoroughly inspected before delivery.Trade-Ins Welcome: Upgrade easily by trading in your current vehicle.Nationwide Delivery: We deliver anywhere in South Africa.Flexible Finance: Hassle-free in-house finance options available.Optional Value-Added Products (not included in listed price):Safety Film (Smash & Grab)Warranty ExtensionPaint ProtectionMaintenance Plan Extens ) [price] => Array ( [0] => 339900 ) [dealershipid] => Array ( [0] => 51 ) [molnumber] => Array ( [0] => MOL01386 ) [dealershipname] => Array ( [0] => Barons Cape Town ) [pictures] => Array ( [0] => a:6:{i:0;s:90:"https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071213_1.jpg";i:1;s:90:"https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071213_2.jpg";i:2;s:90:"https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071213_3.jpg";i:3;s:90:"https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071213_4.jpg";i:4;s:90:"https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071213_5.jpg";i:5;s:90:"https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071213_6.jpg";} ) [nmi_vehicle_id] => Array ( [0] => WVGZZZC1ZPY020390 ) ) 1
WVGZZZC1ZPY020390
WVGZZZC1ZPY020390
Colour: SILVER
MOL01386
28494877

Enquire

Sales Enquiry
<?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");
        }
    }
?>
R 339 900
44 000km
2022
AUTOMATIC
More details
https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071170_1.jpg, https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071170_2.jpg, https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071170_3.jpg, https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071170_4.jpg, https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071170_5.jpg, https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071170_6.jpg, https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071170_7.jpg, https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071170_8.jpg
VOLKSWAGEN
T-CROSS
(2024)

VOLKSWAGEN MY24 1.0 TSI LIFE DSG

Array ( [vehicleid] => Array ( [0] => 28498121 ) [dumpdate] => Array ( [0] => 2025-11-01T15:53:52.323 ) [mmcode] => Array ( [0] => 64030171 ) [molstockbooknumber] => Array ( [0] => MOL01386_U0071170 ) [stockbooknumber] => Array ( [0] => U0071170 ) [vinnumber] => Array ( [0] => WVGZZZC1XSY003171 ) [regnumber] => Array ( [0] => KLS100EC ) [uploadtype] => Array ( [0] => USED ) [vehiclemake] => Array ( [0] => VOLKSWAGEN ) [vehiclerange] => Array ( [0] => T-CROSS ) [vehiclemodel] => Array ( [0] => MY24 1.0 TSI LIFE DSG ) [vehicleyear] => Array ( [0] => 2024 ) [bodytype] => Array ( [0] => CROSSOVER ) [transmissiontype] => Array ( [0] => AUTOMATIC ) [fueltype] => Array ( [0] => UNLEADED ) [colour] => Array ( [0] => ASCOT GRAY ) [numberofdoors] => Array ( [0] => 5 ) [mileage] => Array ( [0] => 14302 ) [servicehistory] => Array ( [0] => Full ) [comments] => Array ( [0] => Barons Cape Town V&A Waterfront. Visit our dealership for a great selection used cars for sale. What you can expect when you purchase a Master Car - a long trusted Brand promise :80-Point Technical Inspection/24-Hour Roadside Assistance/Certified Mileage/Full-Service History, Optional 2-Year / Unlimited mileage. In house vehicle finance available. Chat to our team:Simphiwe DyaniPaul ZibiDaiyaan EdriesElrick Johnson Shamiel NackerdienRiaan KoenLED Plus headlamps ) [price] => Array ( [0] => 399950 ) [dealershipid] => Array ( [0] => 51 ) [molnumber] => Array ( [0] => MOL01386 ) [dealershipname] => Array ( [0] => Barons Cape Town ) [pictures] => Array ( [0] => a:8:{i:0;s:90:"https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071170_1.jpg";i:1;s:90:"https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071170_2.jpg";i:2;s:90:"https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071170_3.jpg";i:3;s:90:"https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071170_4.jpg";i:4;s:90:"https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071170_5.jpg";i:5;s:90:"https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071170_6.jpg";i:6;s:90:"https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071170_7.jpg";i:7;s:90:"https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071170_8.jpg";} ) [nmi_vehicle_id] => Array ( [0] => WVGZZZC1XSY003171 ) ) 1
WVGZZZC1XSY003171
WVGZZZC1XSY003171
Colour: ASCOT GRAY
MOL01386
28498121

Enquire

Sales Enquiry
<?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");
        }
    }
?>
R 399 950
14 302km
2024
AUTOMATIC
More details
https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071180_1.jpg, https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071180_2.jpg, https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071180_3.jpg, https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071180_4.jpg, https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071180_5.jpg, https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071180_6.jpg, https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071180_7.jpg, https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071180_8.jpg, https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071180_9.jpg, https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071180_10.jpg, https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071180_11.jpg, https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071180_12.jpg
VOLKSWAGEN
T-CROSS
(2025)

VOLKSWAGEN MY24 1.0 TSI LIFE DSG

Array ( [vehicleid] => Array ( [0] => 28498123 ) [dumpdate] => Array ( [0] => 2025-11-01T15:53:52.323 ) [mmcode] => Array ( [0] => 64030171 ) [molstockbooknumber] => Array ( [0] => MOL01386_U0071180 ) [stockbooknumber] => Array ( [0] => U0071180 ) [vinnumber] => Array ( [0] => WVGZZZC14SY008169 ) [regnumber] => Array ( [0] => KMZ984EC ) [uploadtype] => Array ( [0] => USED ) [vehiclemake] => Array ( [0] => VOLKSWAGEN ) [vehiclerange] => Array ( [0] => T-CROSS ) [vehiclemodel] => Array ( [0] => MY24 1.0 TSI LIFE DSG ) [vehicleyear] => Array ( [0] => 2025 ) [bodytype] => Array ( [0] => CROSSOVER ) [transmissiontype] => Array ( [0] => AUTOMATIC ) [fueltype] => Array ( [0] => UNLEADED ) [colour] => Array ( [0] => DEEP BLACK PEARLESCENT ) [numberofdoors] => Array ( [0] => 5 ) [mileage] => Array ( [0] => 7602 ) [servicehistory] => Array ( [0] => Full ) [comments] => Array ( [0] => Why Choose Us?Full-Service History: All our pre-owned vehicles include a complete service record.80-Point Quality Check: Every vehicle is thoroughly inspected before delivery.Trade-Ins Welcome: Upgrade easily by trading in your current vehicle.Nationwide Delivery: We deliver anywhere in South Africa.Flexible Finance: Hassle-free in-house finance options available.Optional Value-Added Products (not included in listed price):Safety Film (Smash & Grab)Warranty ExtensionPaint ProtectionMaintenance Plan Extens ) [price] => Array ( [0] => 399950 ) [dealershipid] => Array ( [0] => 51 ) [molnumber] => Array ( [0] => MOL01386 ) [dealershipname] => Array ( [0] => Barons Cape Town ) [pictures] => Array ( [0] => a:12:{i:0;s:90:"https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071180_1.jpg";i:1;s:90:"https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071180_2.jpg";i:2;s:90:"https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071180_3.jpg";i:3;s:90:"https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071180_4.jpg";i:4;s:90:"https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071180_5.jpg";i:5;s:90:"https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071180_6.jpg";i:6;s:90:"https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071180_7.jpg";i:7;s:90:"https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071180_8.jpg";i:8;s:90:"https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071180_9.jpg";i:9;s:91:"https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071180_10.jpg";i:10;s:91:"https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071180_11.jpg";i:11;s:91:"https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071180_12.jpg";} ) [nmi_vehicle_id] => Array ( [0] => WVGZZZC14SY008169 ) ) 1
WVGZZZC14SY008169
WVGZZZC14SY008169
Colour: DEEP BLACK PEARLESCENT
MOL01386
28498123

Enquire

Sales Enquiry
<?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");
        }
    }
?>
R 399 950
7 602km
2025
AUTOMATIC
More details
https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071184_1.jpg, https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071184_2.jpg, https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071184_3.jpg, https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071184_4.jpg, https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071184_5.jpg, https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071184_6.jpg, https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071184_7.jpg, https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071184_8.jpg, https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071184_9.jpg, https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071184_10.jpg, https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071184_11.jpg
VOLKSWAGEN
T-CROSS
(2024)

VOLKSWAGEN MY24 1.0 TSI LIFE DSG

Array ( [vehicleid] => Array ( [0] => 28494867 ) [dumpdate] => Array ( [0] => 2025-11-01T15:53:52.323 ) [mmcode] => Array ( [0] => 64030171 ) [molstockbooknumber] => Array ( [0] => MOL01386_U0071184 ) [stockbooknumber] => Array ( [0] => U0071184 ) [vinnumber] => Array ( [0] => WVGZZZC10SY001624 ) [regnumber] => Array ( [0] => CX5859 ) [uploadtype] => Array ( [0] => USED ) [vehiclemake] => Array ( [0] => VOLKSWAGEN ) [vehiclerange] => Array ( [0] => T-CROSS ) [vehiclemodel] => Array ( [0] => MY24 1.0 TSI LIFE DSG ) [vehicleyear] => Array ( [0] => 2024 ) [bodytype] => Array ( [0] => CROSSOVER ) [transmissiontype] => Array ( [0] => AUTOMATIC ) [fueltype] => Array ( [0] => UNLEADED ) [colour] => Array ( [0] => SMOKY GREY METALLIC ) [numberofdoors] => Array ( [0] => 5 ) [mileage] => Array ( [0] => 10040 ) [servicehistory] => Array ( [0] => Full ) [comments] => Array ( [0] => Barons Cape Town V&A Waterfront. Visit our dealership for a great selection used cars for sale. What you can expect when you purchase a Master Car - a long trusted Brand promise :80-Point Technical Inspection/24-Hour Roadside Assistance/Certified Mileage/Full-Service History, Optional 2-Year / Unlimited mileage. In house vehicle finance available. Chat to our team: Simphiwe Dyani Paul Zibi Daiyaan Edries Elrick Johnson Shamiel Nackerdien ) [price] => Array ( [0] => 399950 ) [dealershipid] => Array ( [0] => 51 ) [molnumber] => Array ( [0] => MOL01386 ) [dealershipname] => Array ( [0] => Barons Cape Town ) [pictures] => Array ( [0] => a:11:{i:0;s:90:"https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071184_1.jpg";i:1;s:90:"https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071184_2.jpg";i:2;s:90:"https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071184_3.jpg";i:3;s:90:"https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071184_4.jpg";i:4;s:90:"https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071184_5.jpg";i:5;s:90:"https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071184_6.jpg";i:6;s:90:"https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071184_7.jpg";i:7;s:90:"https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071184_8.jpg";i:8;s:90:"https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071184_9.jpg";i:9;s:91:"https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071184_10.jpg";i:10;s:91:"https://bmrprodphotosuitestorage.blob.core.windows.net/stockimages/mol01386_u0071184_11.jpg";} ) [nmi_vehicle_id] => Array ( [0] => WVGZZZC10SY001624 ) ) 1
WVGZZZC10SY001624
WVGZZZC10SY001624
Colour: SMOKY GREY METALLIC
MOL01386
28494867

Enquire

Sales Enquiry
<?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");
        }
    }
?>
R 399 950
10 040km
2024
AUTOMATIC
More details