Limiting the list of archives in wordpress based on date
- by Gaurav
I am using wordpress and
I am displaying my archives list in a sidebar using the function
wp_get_archives('type=monthly');
I have posts from Feb 2005 to April 2010 but I want to display June 2009 onwards links.
(i.e. june 2009, july 2009, ....april 2010).
How do I prevent Feb 2005 - may 2005 from being displayed in the archives list.
(Please don't suggest adding a limit i.e. wp_get_archives('type=daily&limit=15'); . That will not solve my problem)