gpt4 book ai didi

wordpress - 如何使用 qTranslate-x 获取所选语言的最新帖子?

转载 作者:行者123 更新时间:2023-12-03 07:10:13 26 4
gpt4 key购买 nike

设置=>语言中的“隐藏不适用于所选语言的内容”的设置。 未选中。这是整个网站的首选状态,但对于某些帖子,我想仅显示所选语言的最新帖子。 (因此,没有默认行为:“抱歉,此条目仅提供法语版本。”)。

到目前为止,我有这段代码,它显示了以其编写的语言编写的最新帖子,但我只想获取以所选语言编写的帖子。

while ( have_posts() ) : the_post();
$mypost = get_post(get_the_ID());
$content = qtranxf_use('en', $mypost->post_content,false);
echo "$content";
endwhile;

最佳答案

所以最后我使用了这种方法来查询特定语言:

$mypost = array('post_type' => 'posts', 'paged' => get_query_var('paged'), 's' => '[:en]',  'posts_per_page' => 7);

它添加了一个额外的 query对于关键字:[:en] 或您想要的任何语言。然后你就可以循环遍历它:

$loop = new WP_Query($mypost);
while ($loop->have_posts()) : $loop->the_post(); ?>

<article>
<?php the_content(); ?>
</article>
<?php
endwhile;

关于wordpress - 如何使用 qTranslate-x 获取所选语言的最新帖子?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36268073/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com