/ Published in: PHP
URL: http://wordpress.org/support/topic/show-list-of-child-pages-of-current-page-w-featured-image
Show all child pages content and featured image on the parent page
Expand |
Embed | Plain Text
<?php $child_pages = $wpdb->get_results("SELECT * FROM $wpdb->posts WHERE post_parent = ".$post->ID." AND post_type = 'page' ORDER BY menu_order", 'OBJECT'); ?> <?php if ( $child_pages ) : foreach ( $child_pages as $pageChild ) : setup_postdata( $pageChild ); ?> <div class="child-thumb"> </div> <?php endforeach; endif; ?>
You need to login to post a comment.
