Advertisement
Guest User

Untitled

a guest
Aug 30th, 2016
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. <form id="side-arch">
  2. <select name="archive-dropdown" onchange="document.location.href=this.options[this.selectedIndex].value;">
  3. <option value=""><?php echo esc_attr( __( 'Select Month' ) ); ?></option>
  4. <?php wp_get_archives( array( 'type' => 'monthly', 'format' => 'option', 'show_post_count' => 1 ) ); ?>
  5. </select>
  6. <input type="submit" value="Go" id="submit" />
  7. </form>
  8.  
  9. <form id="side-arch" action="<?php echo esc_url( home_url( '/' ) ); ?>" method="get">
  10. <select name="archive-dropdown">
  11. <option value=""><?php echo esc_attr( __( 'Select Month' ) ); ?></option>
  12. <?php wp_get_archives( array( 'type' => 'monthly', 'format' => 'option', 'show_post_count' => 1 ) ); ?>
  13. </select>
  14. <input type="submit" value="Go" id="submit" />
  15. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement