ich mache das so
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");
$pages = get_posts('numberposts=1');
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
?>
da wo viel Platz ist fügte ich noch was dazu
lg