List excerpts of Child pages on the Parent page.
-
Hejhej,
I’m trying to do exactly what the title suggests, list excerpts of the child pages on the parent page. I’ve added excerpts to the pages by installing pjw_page_excerpt plugin, that works nicely.
And I’ve found this code for getting it,
<? $pageChildren = $wpdb->get_results("SELECT * FROM $wpdb->posts WHERE post_parent = ".$post->ID." AND post_type = 'page' ORDER BY menu_order", 'OBJECT'); ?> <? if ( $pageChildren ) : foreach ( $pageChildren as $pageChild ) : setup_postdata( $pageChild ); ?> <!-- loop stuff here --> <? endforeach; endif; ?>
But this doesn’t work (i think its for a previous version of wp)
Any ideas on how to do this..?
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘List excerpts of Child pages on the Parent page.’ is closed to new replies.