您在這裡

我怎樣不顯示語言國旗旁邊的語言文字

adrianmak's 的頭像
adrianmak 在 2006-10-11 (三) 06:31 發表

在theme/yourtheme/template.php裡重寫一個function

function phptemplate_i18n_link($text, $target, $lang, $separator=' '){
  $output = '';
  $attributes = ($lang == i18n_get_lang()) ? array('class' => 'active') : NULL;
  $output .= l(theme('i18n_language_icon', $lang), $target, $attributes, NULL, NULL, FALSE, TRUE);
  $output .= '';
  return $output;
}

--
from open mind to open source~