<?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,
}
}
});
});
AUDI MY20 35 TFSI ADVANCED S TRONIC
Elevate Your Driving Experience
Discover a meticulously inspected pre-owned vehicle that embodies the precision and luxury of German engineering. With only 67 890 kilometres on the clock, this vehicle is backed by the balance of a 5-year/100 000 km Audi Freeway Plan, ensuring peace of mind on every journey. The 80-point check guarantees it meets the highest standards of quality.
This vehicle is equipped with advanced features for a premium driving experience. Enjoy the convenience of parking aid plus and a rear view camera, alongside the sophistication of the Audi virtual cockpit. The comfort key and comfort package enhance your everyday usability, while the S-line interior package adds a touch of elegance.
Key highlights:
– Balance of 5yr/100 000 km Audi Freeway Plan
– Audi 80 Point Check completed
– Advanced bumpers in full paint finish
– Aluminium roof rails
– Parking aid plus and rear view camera
– Audi virtual cockpit
– Comfort key and comfort package
– 18″ alloy wheels
At NMI, we prioritise quality and trust. Experience a seamless journey with our in-house finance facilities and nationwide delivery options. Test drives are welcome.
<?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");
}
}
?>
