How to display archive by selecting year and then selecting month
Unfortunately there is no way to nest wp_get_archives to achieve this, so you will have to build your own loop using get_month_link Like this (untested, regard this as a starting point): $year = 2009; while ($year =< get_the_time(‘Y’)) { echo ‘<ul>’ $month = 1; while ($month =< 12) { $link = get_month_link ($year, $month); if … Read more