Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Query : Programmes PP.fr

// WP_Query arguments
$args = array(
	'post_type'              => array( 'program' ),
	'post_status'            => array( 'published' ),
	'nopaging'               => true,
	'posts_per_page'         => '-1',
	'order'                  => 'DESC',
);

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