KIA 1.5 LX CVT
Exceptional Value in a Well-Maintained Vehicle
Discover a remarkable opportunity with this clean, one-owner vehicle that has been meticulously cared for. With a full and diligent service history, you can drive with confidence knowing that it has been properly maintained.
Experience convenience and peace of mind with our comprehensive services. We offer doorstep demos across the Cape Peninsula, financing options with major banks, and insurance arrangements. Trade-ins are welcome, and delivery can be arranged nationwide. Optional warranties and service plans are available to suit your needs.
Mileage is recorded at the time of advertising and may vary.
Key highlights:
– Very clean condition
– One owner from new
– Full Kia service history
– Doorstep demos in Cape Peninsula
– Finance available through major banks
– Insurance arranged for convenience
– Trade-ins welcome
– Delivery arrangements available countrywide
At NMI, we prioritise customer satisfaction and aim to make your car buying experience seamless and enjoyable. Let us handle everything for you.
<?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");
}
}
?>

