自定义POST UI插件&WP_Query-Polylang

时间:2021-08-23 作者:Xavier.W.

我以前有一个多语种的网站,用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中翻译并找到。

我不太擅长编码,这是我的借口。

谢谢你,泽维尔

1 个回复
SO网友:Xavier.W.

固定的

将post\\u type一次改为“post”,然后又改回“conversatietafel”,现在他正在显示帖子!

抱歉打扰了:s

相关推荐

使用新的WP-Query()从循环中过滤后期格式;

嗨,我目前正在为我的博客构建一个主题。下面的代码指向最新的帖子(特色帖子)。因为这将有一个不同的风格比所有其他职位。然而我想过滤掉帖子格式:链接使用我在循环中定义的WP查询,因为它给我带来了更多的灵活性。我该怎么做呢? <?php $featured = new WP_Query(); $featured->query(\'showposts=1\'); ?> <?php while ($featured->have_post