If/Else child list for Custom Post Type single template within loop?

If you’re using custom post types then you’re going to need to create a custom loop.

<?php $loop = new WP_Query( array( 'post_type' => 'services', 'posts_per_page' => 5) ); ?>
<?php while ( $loop->have_posts() ) : $loop->the_post(); ?>
    POST HERE
<?php endwhile; ?>