X

How to display current month posts only in WordPress site

Add below code to your template just before the loop and template will display only posts from current month.

 
	<?php
	$currentmonth = date('m');
	query_posts(
		array(
		'posts_per_page' => 11,
		'monthnum' => $currentmonth
	));
	?>