<?php global $post; $args = array('post_parent' => $post->ID, 'post_type' => 'page', 'posts_per_page' => -1); $custom_posts = get_posts($args); foreach($custom_posts as $post) : setup_postdata($post); ?> <div class="col-sm-8 col-md-4 service"> <div> <header> <h3><?php the_title(); ?></h3> </header> <p><?php the_field('short_description');?></p> <p><a role="button" class="btn btn-primary" href="<?php the_permalink();?>">Learn more</a></p> </div> </div> <?php endforeach; ?>
Select allOpen in new window