I am trying to write a piece of code that would allow me to change images or a whole block of a div depending on the language
<?php
if($_SESSION['lang'] == "fr"){
echo "images/header-fr-4.jpg";
}else{
echo "images/header-4-en.jpg";
}
?>
Is there any other way of doing this in wordpress?