我正在尝试下一个代码:
$categoria = get_the_category();
$hijosCategoria = (array) get_term_children($categoria[0]->term_id, \'category\');
$queryBase = array("cat"=>$categoria[0]->term_id,"category__not_in"=>$hijosCategoria);
$objetoBase = new WP_Query($queryBase);
if ($objetoBase->have_posts()){
while($objetoBase->have_posts()){
$objetoBase->the_post();
?>
<section class="contenido">
<h2 class="titulo-contenido"><?php the_title();?></h2>
<article class="texto-contenido">
<?php the_content();?>
</article>
</section>
<?php
}
wp_reset_postdata();
}
但我总能看到邮局的孩子们。我不明白为什么,因为“$hijosCategoria”的值是正确的。
这就像“$queryBase”不使用category\\u not\\u in。
查询中是否需要更多内容?