Hi I need urgent help on this site: https://ipadangola.sycdn.us/
I need to switch the logo from English to Portuguese on language switching. please assist, also the icons would need to switch as well to Portuguese. i used this:
<?php
$mylocale = get_bloginfo(‘language’);
if($mylocale == ‘en-US’) {
<img src=”<?php bloginfo(‘stylesheet_directory’); ?>/images/tagline.png” width=”398″ height=”15″>
}
elseif($mylocale == ‘pt-pt’){
<img src=”<?php bloginfo(‘stylesheet_directory’); ?>/images/tagline-por.png” width=”398″ height=”15″>
}
?>