Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save robgolbeck/0104062134480c8f3cf3 to your computer and use it in GitHub Desktop.
Save robgolbeck/0104062134480c8f3cf3 to your computer and use it in GitHub Desktop.
WordPress Create Drop Down List of Monthly Archives
// Reference: https://codex.wordpress.org/Function_Reference/wp_get_archives
<select class="turnintodropdown" name="archive-dropdown" onchange="document.location.href=this.options[this.selectedIndex].value;">
<option value=""><?php echo esc_attr( __( 'Monthly Archives' ) ); ?></option>
<?php wp_get_archives( array( 'type' => 'monthly', 'format' => 'option' ) ); ?>
</select>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment