Skip to content

Instantly share code, notes, and snippets.

@asalkey
asalkey / gist:adf94d94d72f6d3e6043
Last active August 29, 2015 14:01
WordPress: Posts ordered by year pulled from specific taxonomy and term
// In Template file
<?php $tax = get_query_var('taxonomy');
$term = get_query_var('term');
?>
<?php foreach(posts_by_year($tax,$term) as $year => $posts) : ?>
<h2><?php echo $year; ?></h2>