Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

test

// WP_Query arguments
$args = array(
	'post_parent'            => 'dish-parent',
	'post_type'              => array( 'dish' ),
	'nopaging'               => true,
	'order'                  => 'ASC',
);

// The Query
$course = new WP_Query( $args );