solved ??
if(qtrans_getLanguage() == ‘it’){
if (!function_exists(‘replace_weather’)) :
function replace_weather($content) {
$content = str_replace(‘Chance of Flurries’, ‘possibile tempesta di neve’, $content);
…
…
}
add_filter(‘wp_wunderground_forecast’, ‘replace_weather’);
endif;
}
if(qtrans_getLanguage() == ‘de’){
if (!function_exists(‘replace_weather’)) :
function replace_weather($content) {
$content = str_replace(‘Chance of Flurries’, ‘M?gliche Schneeschauer’, $content);
…
…
}
add_filter(‘wp_wunderground_forecast’, ‘replace_weather’);
endif;
}
and so on ??