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 )); ?> |
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 )); ?> |