How do i list my archives by year?
sorry for the newbie question but i saw that there is a thematic_monthly_archives but i dont know how to make it into yearly? any advice?:)
thanx so much!
How do i list my archives by year?
sorry for the newbie question but i saw that there is a thematic_monthly_archives but i dont know how to make it into yearly? any advice?:)
thanx so much!
Well if you want to duplicate thematic's function but change it to yearly archives you put this code in your child theme's functions.php.
function childtheme_yearly_archives() { ?>
<li id="yearly-archives" class="content-column">
<h2><?php _e('Archives by Year', 'thematic') ?></h2>
<ul>
<?php wp_get_archives('type=yearly&show_post_count=1') ?>
</ul>
</li>
<?php }
add_action('thematic_archives', 'childtheme_yearly_archives', 6);
If you just want to display the archives somewhere, then the wp_get_archives() line in the middle would be enough.
thanx for that! it works.. but how do i filter it by year in a certain category? like only under the news category will be listed by year?
You must log in to post.