Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

PROMOTION > PROGRAMME NEUF >LOCALISATION

// WP_Query arguments
$args = array(
	'post_type'              => array( 'promotion' ),
	'nopaging'               => false,
	'posts_per_page'         => '10',
	'posts_per_archive_page' => '10',
	'ignore_sticky_posts'    => false,
);

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