Qualcuno può aiutarmi con wp_query.
Sto creando un file modello / loop per creare e archiviare la pagina delle pagine secondarie della pagina corrente.
Questa query deve essere automatica come sto usando in alcune pagine.
Questa è la mia domanda di seguito, ma restituisce solo i miei post anziché le pagine secondarie.
<?php
$parent = new WP_Query(array(
'post_parent' => $post->ID,
'order' => 'ASC',
'orderby' => 'menu_order',
'posts_per_page' => -1
));
if ($parent->have_posts()) : ?>
<?php while ($parent->have_posts()) : $parent->the_post(); ?>
<div id="parent-<?php the_ID(); ?>" class="parent-page">
<h1><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h1>
<p><?php the_advanced_excerpt(); ?></p>
</div>
<?php endwhile; ?>
<?php unset($parent); endif; wp_reset_postdata(); ?>
Grazie in anticipo per qualsiasi aiuto.
Josh