Hola a todos!
Estoy probando mi siguiente código:
Código PHP:
Ver original$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();
}
Pero no sé por qué me está mostrando las entradas hijas que tengo, no entiendo por qué si los valores de $hijosCategoría tiene los id de los hijos bien.
¿Me falta algo en la query por añadir?