0

我正在使用 wordpress wpml 插件来显示选定的语言内容。

if(wpml_getLanguage()=='en'):
    echo esc_attr($avocation_options['home-post-title-1']); 
endif;
if(wpml_getLanguage()=='sv'):
    echo esc_attr($avocation_options['home-post-title-swedish1']); 
endif;
4

1 回答 1

0

我得到了这个问题的解决方案

if (ICL_LANGUAGE_CODE == 'en') { echo wpautop($avocation_options['home-post-desc-1']); } if (ICL_LANGUAGE_CODE == 'sv') { echo wpautop($avocation_options['home-post-desc-swedish1']); }

于 2015-05-13T12:46:41.323 回答