Skip to content

Instantly share code, notes, and snippets.

@delineas
Created October 13, 2015 11:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save delineas/43acfc91a4ac5084e4d2 to your computer and use it in GitHub Desktop.
Save delineas/43acfc91a4ac5084e4d2 to your computer and use it in GitHub Desktop.
Wordpress Select dropdown filter by month
<?php
// /wp-content/themes/Karma/template-full-width.php
// Below line #41 <main role="main" id="content" class="content_full_width">
<div class="select-archive-dropdown" style=“text-align: right;margin-bottom: 15px;”><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>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment