Exibe as páginas filhas da página que está visitando:

<?php
    global $post;

    $filha = array(
        // O $post->ID é o ID da página atual //
        'post_parent' => $post->ID,
        'order'=>'ASC',
        'post_type' => 'page',
        'post_status' => 'publish',
        // Quantidade de filhas a exibir
        'posts_per_page' => 5
    );

    query_posts($filha);

    if ( have_posts() ) : while ( have_posts() ) : the_post();
?>

<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>

<?php the_excerpt(); ?>

<?php
    endwhile;
    endif;
    wp_reset_query();
?>

<?php endwhile; endif; wp_reset_query(); ?>

2 thoughts on “Loop de SubPages

Deixe um comentário

O seu endereço de e-mail não será publicado. Campos obrigatórios são marcados com *