Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- $subpages = new WP_Query( array(
- 'post_type' => 'page',
- 'post_parent' => $post->ID,
- 'posts_per_page' => -1,
- 'orderby' => 'menu_order'
- ));
- ?>
- <?php if( $subpages->have_posts() ) : ?>
- <?php while( $subpages->have_posts() ) : $subpages->the_post(); ?>
- <div>
- <?php the_title();?>
- </div>
- <?php endwhile; ?>
- <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement