query wp per ottenere pagine figlio della pagina corrente


32

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


Prova questa soluzione == ottieni figli di un post - wordpress.stackexchange.com/a/123143/42702
T.Todua

Risposte:


70

Devi cambiare child_ofper post_parente anche aggiungere post_type => 'page':

Codice WordPress Wp_query Parametri di post e pagina

<?php

$args = array(
    'post_type'      => 'page',
    'posts_per_page' => -1,
    'post_parent'    => $post->ID,
    'order'          => 'ASC',
    'orderby'        => 'menu_order'
 );


$parent = new WP_Query( $args );

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 endif; wp_reset_postdata(); ?>

1
Grazie amico, ho provato l' post_parentoriginale, ma è 'post_type' => 'page'questa la chiave: allora il wordpress querys è predefinito per pubblicare? Accetterò la risposta quando me lo permette.
Joshc,

Sì, 'post_type' => 'post'è l'impostazione predefinita.
mrwweb,
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.