我正在使用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;发布于 2015-05-13 20:46:41
我得到了这个问题的答案
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']); }
https://stackoverflow.com/questions/30214152
复制相似问题