Omschrijving
<?php
// Check the current language using WPML's ICL_LANGUAGE_CODE
if (ICL_LANGUAGE_CODE == 'nl') {
// Display the Dutch image
echo '<img src="path/to/your/dutch-image.jpg" alt="Dutch Description">';
} elseif (ICL_LANGUAGE_CODE == 'en') {
// Display the English image
echo '<img src="path/to/your/english-image.jpg" alt="English Description">';
} else {
// Optional: Display a default image if neither Dutch nor English
echo '<img src="path/to/your/default-image.jpg" alt="Default Description">';
}
?>