Php get_在WPML中的两种语言中,其中一种语言的_类别返回空

Php get_在WPML中的两种语言中,其中一种语言的_类别返回空,php,wordpress,wpml,Php,Wordpress,Wpml,大家,帮帮我 我们安装了WPML,翻译了所有内容,包括类别。 现在,对于英语的帖子,我可以通过get_the_category()获取类别,但是对于俄语的帖子,get_the_category()返回一个空数组 $category = get_the_category($post->ID); $cat = wp_get_post_categories($post->ID); $categories = apply_filters( 'wpml_object_id', $cat[

大家,帮帮我

我们安装了WPML,翻译了所有内容,包括类别。 现在,对于英语的帖子,我可以通过
get_the_category()
获取类别,但是对于俄语的帖子,get_the_category()返回一个空数组

$category = get_the_category($post->ID);
$cat = wp_get_post_categories($post->ID);
$categories = apply_filters( 'wpml_object_id',  $cat[0], 'category', TRUE  );
$category = get_category($categories);