zOmbiesundaYs
Member
Posted 1 month ago #
I'm trying to add a list of post archives to my sidebar without the use of a widget. The sidebar on my theme is CSS heavy and customized to the T.
I'd also like to add a page with a more expounded on archive list.
I've tried a few plug-ins without any luck. It basically just needs to have a list of
have a look at /wp-includes/default-widgets.php how they extract the archives and copy the code you need.
Peter
zOmbiesundaYs
Member
Posted 1 month ago #
Great idea! The code was:
<?php wp_get_archives(apply_filters('widget_archives_args', array('type' => 'monthly', 'show_post_count' => $c))); ?>
Thanks so much!