Hi. I'm having an issue with the plugin. Older posts are listed inside current month posts list.
My settings looks like this:
<div id="archiveList" class="sidebarList">
<h4>Archive</h4>
<?php
if( function_exists('collapsArch') ) { ?>
<ul><?php collapsArch(array('showMonthCount' => false, 'showYearCount' => false, 'linkToArch' => 0, 'expandCurrentYear' => false, 'expandCurrentMonth' => false, 'animate' => 1, 'expand' => 4, 'customExpand' => '', 'customCollapse' => '')); ?></ul>
<?php } else {
echo "<ul>\n";
wp_get_archives('show_post_count=0');
echo "</ul>\n";
}
?>
</div>
And my development url is this http://174.120.21.162/~hlogror/v1/blog/
Am I doing something wrong or it is a bug?
Thanks in advance.