Wordpress不显示符合2个类别

时间:2016-02-23 19:07:29

标签: php wordpress

我有帖子,匹配2个类别。父 - > Child1 试图仅从child1类别获取帖子,但只有在有1个类别时,wordpress才会显示帖子。

示例:

发布1.分类:父母,Child1

发布2.分类:Child1

我用

$args = array( 'posts_per_page' => 20, 'orderby' => 'date', 'post_type' => 'post', 'category' => $Child1_category_id );
$postslist = get_posts( $args );

但它只返回Post 2。 我需要获得Post 1和Post 1。

我做错了什么? 谢谢!

1 个答案:

答案 0 :(得分:0)

尝试使用此类型的args:                                                           

如果不行,请尝试使用父母'在query_posts。