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(); ?>
Obrigado! procurei isto por toda parte, ajudou muito.
Olá Erick! De nada, ficamos felizes de espalhar conhecimento!