I’m using the following snippet to create a pulldown menu for selecting a monthly archive:
<select class="form" name="Month">
{exp:channel:month_links channel="news"}
<option value="{path='channel/newsarchive'}"{if segment_3 == year AND segment_4 == month_num} selected{/if}>{month} {year}</option>
{/exp:channel:month_links}
</select>The issue is that month_links doesn’t allow me to select a specific category ID—which is what I need. Any ways around this?
Thank you for your help!