Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

April 2023 After Today

Return all dates in April after the current day.

$date_query = array(
	array(
		'year'          => 2023,
		'month'         => 4,
	),
	array(
		'after'         => 'now',
		'inclusive'     => true,
	),
);