Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter orbstra

    (@orbstra)

    im 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.

    Thread Starter orbstra

    (@orbstra)

    the 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!

    Thread Starter orbstra

    (@orbstra)

    <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>

Viewing 3 replies - 1 through 3 (of 3 total)