Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

thegreenline date range

$dtRngQry = array(
	'relation' => 'AND',
	array(
		'year'          => 2017,
		'month'         => 10,
		'day'           => 1,
		'compare'       => '>=',
		'column'        => 'post_date',
	),
	array(
		'year'          => 2017,
		'month'         => 11,
		'day'           => 30,
		'compare'       => '<=',
		'column'        => 'post_date',
	),
);