Skip to content

Instantly share code, notes, and snippets.

View robgolbeck's full-sized avatar

Rob Golbeck robgolbeck

View GitHub Profile
@robgolbeck
robgolbeck / WordPress Add Attributes to previous_posts_link and next_posts_link
Last active July 18, 2017 14:11
WordPress Add Attributes to previous_posts_link and next_posts_link
@robgolbeck
robgolbeck / WordPress Create Drop Down List of Monthly Archives
Last active December 8, 2022 09:40
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>