WordPress qtranslate显示某些语言的帖子



例如,我有两种语言:EN和RU:如何仅用RU语言在index.php文章中显示?可能是CCD_ 3中的一些参数?

尝试使用qtranslate核心函数

function qtrans_use($lang, $text, $show_available=false)

类似这样的东西:

$mypost = get_post(get_the_ID()); 
$content = qtrans_use('ru', $mypost->post_content,false); 
echo "$content";

在新版本的qtranslate和qtranslate-x中,只能按以下方式工作:

$postId = get_the_ID();
wp_cache_delete($postId, 'posts');
$mypost = WP_Post::get_instance($postId);
$titleEn = qtrans_use('en', $mypost->post_title, false);
$titleRu = qtrans_use('ru', $mypost->post_title, false);
//or all object:
$mypost = qtrans_use('en', $mypost, false);

查看更多信息(rus(:https://intsystem.org/coding/qtranslate-x-vyvod-stati-v-drugom-yazyke/

相关内容

  • 没有找到相关文章

最新更新