我想在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类的帖子。 当我删除'category__and'时,我会收到所有帖子。