Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

post type maquette

// WP_Query arguments
$args = array(
	'post_type'              => array( 'maquette' ),
	'post_status'            => array( 'publish' ),
);

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