1

我想在 WP_Query 函数中使用“category__and”过滤器来发布一些帖子,但我什么也没得到!

这是我的代码:

$query_args = array( 'category__and' => array(44,43), 'posts_per_page' => 9, 'no_found_rows' => 1, 'post_status' => 'publish', 'post_type' => 'product');
$r = new WP_Query($query_args);
if ($r->have_posts()) { ............

重要提示:我在 44 和 43 两个类别中都有帖子。当我删除“类别__and”时,我会收到所有帖子。

4

0 回答 0