Create a links dropdown?
-
Okay, I created an archive and category dropdown with this:
<li id="archives">Archives:
<form name="archiveform" action="">
<select name="archive_chrono" style="width:150px; margin: 0px; font-family: Tahoma; font-size: 10px;" onchange="window.location = (document.forms.archiveform.archive_chrono[document.forms.archiveform.archive_chrono.selectedIndex].value);">
<option value=''>Select Month</option>
<?php wp_get_archives('format=option'); ?>
</select>
</form><li id="categories">Categories:
<form name="categories">
<select name="menu" style="width:150px; margin: 0px; font-family: Tahoma; font-size: 10px;" onChange="MM_jumpMenu('parent',this,0)">
<option selected value="">Select Category</option>
<?php dropdowncats_option('name','asc',0,1,1); ?>
</select>
</form>
They seem to work okay, even though I would have preferred my category dropdown to be heiarchal -and- show the post counts. But, I can live without both.
Now, what do I use for a links dropdown?
- The topic ‘Create a links dropdown?’ is closed to new replies.