Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

CRON – Récupère les dix dernières Franchises existantes

// WP_Query arguments
$args = array(
	'post_type'              => array( '$post_type_annonce' ),
	'post_status'            => array( 'publish' ),
	'nopaging'               => false,
	'paged'                  => '1',
	'posts_per_page'         => '10',
	'tax_query'              => array(
		array(
			'taxonomy'         => 'pointfinderltypes',
			'terms'            => '52',
			'include_children' => false,
		),
	),
	'date_query'             => array(
		array(
			'after' => array(
				'year'  => 2018,
				'month' => 2,
				'day'   => 1,
			),
		),
	),
);

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