ah!
Damit kannst Du auf einer statischen Seite ihre Kinder ausgeben
vorher kannst Du ruhig den normalen
Loop der Seite angeben, wenn sie eigenen Inhalt auch haben sollte-manchmal weiß man ja nie
PHP-Code:
<?php
if ( is_page() ) : // is_page test
global $post, $wpdb;
$parent_ID = ($post->post_parent) ? $post->post_parent : $post->ID;
$pages = $wpdb->get_results("SELECT * FROM $wpdb->posts WHERE post_parent = $parent_ID");
if($pages) : foreach($pages as $post) : // child pages loop
setup_postdata($post);
?>
<h3><?php the_title(); ?></h3>
<?php the_content(); ?>
<?php
endforeach; endif; // end child pages loop
endif; // end is_page test
?>