Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

posts before today

// WP_Query arguments
$args = array(
	'post_type'              => array( 'corso' ),
	'post_status'            => array( 'publish' ),
	'date_query'             => array(
		array(
			'before'        => 'today',
		),
	),
);

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