我以前有一个多语种的网站,用Qtranslate翻译,但现在我把它改成了Polylang。我有一个wp\\u查询(如下)运行良好,当转换为polylang时,显示没有帖子符合我的条件
<?php
$args = array(
\'post_type\' => \'conversatietafel\',
\'posts_per_page\' => 10,
\'category_name\' => \'Volwassene\',
\'public\' => True,
);
$the_query = new WP_Query( $args );
?>
<?php if ( $the_query->have_posts() ) : ?>
<?php while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
类别和帖子在Polylang中翻译并找到。
我不太擅长编码,这是我的借口。
谢谢你,泽维尔