仅显示来自特定父类别的帖子

时间:2013-12-10 作者:Jayx

我的类别结构与以下类似:

如果我查询,则父猫1子猫1子猫Parent cat 2 对于帖子,我获取该类别及其子类别中的所有帖子。

如何查询父cat并在其子cat中排除帖子?

1 个回复
SO网友:Shazzad

$the_category_id    = 10;
$new_posts          = new WP_Query( array(
    \'post_type\'     => \'post\',
    \'post_status\'   => \'publish\',
    \'tax_query\'     => array(
        array(
            \'taxonomy\'          => \'category\',
            \'terms\'             => array( $the_category_id ),
            \'field\'             => \'term_id\',
            \'operator\'          => \'AND\',
            \'include_children\'  => false
        )
    )
) );
所以基本上区别在于include_children 参数

结束