Skip to content

Instantly share code, notes, and snippets.

@remkus
Forked from crondeau/chilpages-looping.php
Last active March 24, 2016 14:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save remkus/ad099a99280780568d36 to your computer and use it in GitHub Desktop.
Save remkus/ad099a99280780568d36 to your computer and use it in GitHub Desktop.
I used this code to loop through child pages of a custom post type called work. Each Work piece had a title, featured image and pdf. The child pages, describe the details of the project or work piece and display as an accordion. So basically what we have is an accordion within an accordion.
<?php
// loop through the sub-pages of your custom post type
$childpages = new WP_Query( array(
'post_type' => 'wpkb-article',
'post_parent' => $this_page,
'posts_per_page' => 100,
'orderby' => 'menu_order'
));
while ( $childpages->have_posts() ) : $childpages->the_post(); ?>
<article class="entry">
<h2 class="entry-title"><a href="<php the_permalink();?>"><?php the_title(); ?></a></h2>
<div class="entry-content">
<?php the_excerpt();?>
<?php $this_subpage=$post->ID; ?>
<?php
//Loop through the sub-pages of the child pages next
$subpages = new WP_Query( array(
'post_type' => 'wpkb-article',
'post_parent' => $this_subpage,
'posts_per_page' => -1,
'orderby' => 'menu_order'
));
while ( $subpages->have_posts() ) : $subpages->the_post(); ?>
<section class="subpages">
<h3><a href="#"><?php the_title(); ?></a></h3>
<div>
<?php the_content();?>
</div>
</section>
<?php endwhile; wp_reset_query(); ?>
</div><!--.content -->
</section>
<?php endwhile; wp_reset_query(); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment