Created
September 27, 2019 16:11
-
-
Save celticwebdesign/6829a8b211b0ac52b63d217e6f7e5d7b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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