Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Missed Posts

// WP_Query arguments
$args = array(
	'post_status'            => array( 'future' ),
	'posts_per_page'         => '10',
	'date_query'             => array(
		array(
			'before'        => '$post_date',
		),
	),
);

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