Hey everybody :)
just a little question
in the widget there's that block called "archive".
it's great , but I just want it to show the posts by year instead of monnths.
so is it possible ?
thanx for reading.
Hey everybody :)
just a little question
in the widget there's that block called "archive".
it's great , but I just want it to show the posts by year instead of monnths.
so is it possible ?
thanx for reading.
<?php wp_get_archives('type=yearly'); ?>
thanx t-p for passing by,
but please how can you tell me how to use this as a widget ?
I tried to copy it , but didn't work, I think widgets don't allow php code in 'em
try this in your sidebar.php where you want it:
<li id="archives" class="widget-container">
<h3 class="widget-title"><?php _e( 'Yearly Archives', 'twentyten' ); ?></h3>
<?php wp_get_archives('type=yearly'); ?>
</li>This topic has been closed to new replies.