Paginated Archives or Loop by Month
I think this is not very hard to do. If you have currently have paginated date-based archives you can just disable paging when you are in a month overview: add_action( ‘pre_get_posts’, ‘wpse12983_pre_get_posts’ ); function wpse12983_pre_get_posts( &$wp_query ) { if ( $wp_query->is_month() ) { $wp_query->set( ‘nopaging’, true ); } } You can use get_month_link() to get … Read more