Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

query_cotisation

// WP_Query arguments
$args = array(
	'post_type'              => array( 'cotisation-ucs' ),
	'post_status'            => array( 'publish' ),
	'nopaging'               => true,
	'posts_per_page'         => '-1',
	'ignore_sticky_posts'    => false,
);

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