Here is my current code which shows a dropdown list of all years daily post archive.
<select name="archive-dropdown" onChange='document.location.href=this.options[this.selectedIndex].value;'>
<option value=""><?php echo attribute_escape(__('Select Issue')); ?></option>
<?php wp_get_archives('type=daily&format=option'); ?> </select>
But i want to show a specific year daily post archive into dropdown list. (eg. only 2010 daily post archive will show into dropdown list)
Pls help me.
Thanks in advance, Onirban