orbstra
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Drop Down Menusim lookin for just a line of code that will turn `<?php wp_list_pages(); ?>’ into a drop-down menue like the archive and category drop downs above.
Forum: Themes and Templates
In reply to: Drop Down Menusthe first two table columns contain teh archive drop-down, and the category drop-down, the third column contains
<?php wp_list_pages(); ?>. I want to make<?php wp_list_pages(); ?>displayed in a drop-dwon menue. I might suggest pasting this into a WYSIG editor to see whut I a talking about. My site is still running on my localhost, although I am throwing a copy on the server for testing purposes like this!Forum: Themes and Templates
In reply to: Drop Down Menus<table width="425" height="45" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="164" height="21"><h2>Tags</h2></td>
<td width="200"><h2>Archives</h2></td>
<td width="61"><h2>Pages</h2></td>
</tr>
<tr>
<td><form action="<?php echo $PHP_SELF ?>" method="get">
<p style="padding: 0px; margin: 0px;">
<?php dropdown_cats(); ?>
<input type="submit" name="submit" value="GO" />
</p>
</form></td>
<td width="200"><form id="archiveform" action="<?php echo $PHP_SELF ?>" method="post">
<p style="margin: 0px; padding: 0px;">
<select name="select" id="archive_chrono">
<option value="">Archives</option>
<?php get_archives("monthly","","option","","",false); ?>
</select>
<input name="button" type="button" onclick="window.location = (document.forms.archiveform.archive_chrono[document.forms.archiveform.archive_chrono.selectedIndex].value);" value="Go" />
</p>
</form></td>
<td width="61"><?php wp_list_pages(); ?></td>
</tr>
</table>