Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Untitled Snippet

// WP_Query arguments
$args = array(
	'post_type'              => array( 'recipes' ),
	'post_status'            => array( 'published' ),
	'nopaging'               => true,
	'order'                  => 'DESC',
	'orderby'                => 'title',
);

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