• Resolved ericcarl

    (@ericcarl)


    So I’m currently using a drop-down archive menu as is described here:

    http://codex.wordpress.org/Template_Tags/wp_get_archives

    Now I’d like to combine it with something like this:

    <?php if (is_paged()) { the menu; } ?>

    … so that the menu only shows up on one of the paged index pages. How would I go about doing this? Attempting to just drop the html drop-down code into the PHP snippet seems to break everything. Thanks!

Viewing 1 replies (of 1 total)
  • Thread Starter ericcarl

    (@ericcarl)

    Hey, and I figured it out. Did some Googling and didn’t realize you could split PHP code up like this.

    <?php if (is_paged()) { ?>
    <h2>Archives</h2>
    <select name="archive-dropdown" onChange='document.location.href=this.options[this.selectedIndex].value;'>
    <option value=""><?php echo attribute_escape(__('Select Month')); ?></option>
    <?php wp_get_archives('type=monthly&format=option&show_post_count=1'); ?></select>
    <?php } ?>

    Works!

Viewing 1 replies (of 1 total)
  • The topic ‘Drop down archive menu and is_paged’ is closed to new replies.