Skip to content

Instantly share code, notes, and snippets.

@celticwebdesign
Created September 27, 2019 16:11
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 celticwebdesign/6829a8b211b0ac52b63d217e6f7e5d7b to your computer and use it in GitHub Desktop.
Save celticwebdesign/6829a8b211b0ac52b63d217e6f7e5d7b to your computer and use it in GitHub Desktop.
$args = array(
'type' => 'yearly',
'limit' => '',
'format' => 'html',
'before' => '',
'after' => '',
'show_post_count' => false,
'echo' => 0,
'order' => 'DESC',
'post_type' => 'post'
);
$yearly = wp_get_archives( $args );
echo '
<div class="blog_side_categories yearly">
<div class="title">Archive</div>
<ul>';
echo $yearly;
echo '
</ul>
</div>
';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment