How to display child page from specific parent page in homepage?
This should do it. <?php $pages = get_pages(‘child_of=199’); foreach($pages as $child) { ?> <h3><?php echo get_the_title($child->ID); ?></h3> <?php // This next line gets the full page of content // echo get_post_field(‘post_content’, $child->ID); // This next line will cut the content off at 450 letters // With a read more link under it echo ‘<p>’ . … Read more