我如何使用 wpml 知道 wordpress 中 post/page 的语言?
How do i know the language of post/page in wordpress using wpml?
我正在使用 wpml
通过使用此代码,我可以获得 post/page
的 ID
$id = icl_object_id($course_id, 'page', false, ICL_LANGUAGE_CODE);
我想知道如何获得post/page的语言类型
我试过WP_query,但没用
我找到了解决方案,
$post_language_information = wpml_get_language_information(get_the_ID());
echo <pre>;
print_r($post_language_information );
echo </pre>;
输出
Array
(
[language_code] => zh-hant
[locale] => zh_TW
[text_direction] =>
[display_name] => 繁體中文
[native_name] => 繁體中文
[different_language] =>
)
我正在使用 wpml 通过使用此代码,我可以获得 post/page
的 ID$id = icl_object_id($course_id, 'page', false, ICL_LANGUAGE_CODE);
我想知道如何获得post/page的语言类型 我试过WP_query,但没用
我找到了解决方案,
$post_language_information = wpml_get_language_information(get_the_ID());
echo <pre>;
print_r($post_language_information );
echo </pre>;
输出
Array
(
[language_code] => zh-hant
[locale] => zh_TW
[text_direction] =>
[display_name] => 繁體中文
[native_name] => 繁體中文
[different_language] =>
)