Skip to content

Instantly share code, notes, and snippets.

@shaunkrd
Last active January 12, 2017 14:55
Show Gist options
  • Save shaunkrd/091fcb44f9921b980d60d0a4f15e5551 to your computer and use it in GitHub Desktop.
Save shaunkrd/091fcb44f9921b980d60d0a4f15e5551 to your computer and use it in GitHub Desktop.
Show date filter used to access WordPress posts archive
<?php if (is_date()) : ?>
<?php
// get the date filter to display below
if ( is_day() ) $date_filter = get_the_date('F jS Y');
else if ( is_month() ) $date_filter = get_the_date('F Y');
else if ( is_year() ) $date_filter = get_the_date('Y');
?>
<p>Archive for: <?php echo $date_filter; ?></p>
<?php endif; // END if (is_date()) ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment