Hi, i use a widget to put Archive, Categories, Links etc, on the footer; i want to limit the Archive widget to 8 months links. I've changed this code (on footer.php)
<h2>Archives</h2>
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>
to
<h2>Archives</h2>
<ul>
<?php wp_get_archives('type=monthly&limit=2'); ?>
</ul>
i've used 2 instead of 8 to test the code. But it is not work. Is possible to do this? Ad is possible to put a "More" link on the archive? Like this
month1
month2
month3
month4
month5
month6
month7
other months
Total 8 links (7 months + 1 more link)














